Problem: 136. 只出现一次的数字
时间复杂度: O ( n ) O(n) O(n)
空间复杂度: O ( n ) O(n) O(n)
class Solution { public int singleNumber(int[] nums) { int res = 0; for(int x : nums) res ^= x; return res; } }