Skip to content

Commit bd76a82

Browse files
Create single integer
1 parent 4641328 commit bd76a82

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

single integer

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
class Solution {
2+
public:
3+
int singleNumber(vector<int>& nums) {
4+
int ans=0;
5+
for(int i=0;i<nums.size();i++)
6+
{
7+
ans=ans^nums[i];
8+
}
9+
return ans;
10+
11+
}
12+
};

0 commit comments

Comments
 (0)