Easy
Given a non-empty array nums where every element appears twice except one, find that single one. Do it with O(n) time and O(1) extra space.
nums
Input: nums = [2,2,1] Output: 1
Input: nums = [4,1,2,1,2] Output: 4