Compare 2 arrays and list the differences - Swift
问题 I was wondering how one would go about comparing 2 boolean arrays and listing the non matching booleans. I have written up a simple example of 2 arrays. let array1 = [true, false, true, false] let array2 = [true, true, true, true] How would I compare array1 & array2 and display the non matching. I am trying to do this to check user results for a quiz game. Thanks! 回答1: Here's one implementation, but whether it is the one you are after is completely impossible to say, because you have not