Untitled
unknown
plain_text
a year ago
200 B
10
Indexable
class Solution {
public:
int singleNumber(vector<int>& nums) {
int ans = 0;
for (int i = 0; i < nums.size(); i++)
ans ^= nums[i];
return ans;
}
};Editor is loading...
Leave a Comment