class Array def ^(other) (self | other) - (self & other) endendx = [1, 2, 3, 4, 5]y = [3, 4, 5, 6, 7]z = x ^ y # [1, 2, 6, 7]