/**
* @param {number[]} nums
* @return {number}
*/
var singleNumber = function(nums) {
let ans = 0
for (const num of nums) {
ans ^= num
}
return ans
};
欢迎通过「邮件」或者点击「这里」告诉我你的想法
Welcome to tell me your thoughts via "email" or click "here"