Let's say there are two arrays...
var array1 = ["a", "b", "c"]
var array2 = ["b", "c", "a"]
I'd like the result of the comparison of these two arrays to be true, and the following...
var array1 = ["a", "b", "c"]
var array2 = ["b", "c", "a", "d"]
...to be false. How can I achieve that in Swift? I tried to convert both arrays to sets but for some reason Set() keeps removing some (usually duplicated) objects that the array contains.
Any help would be appreciated.
["a","b"]
and["a", "a", "b"]
, should they comparetrue
orfalse
? – Buckler