We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b58e3ea commit 4eb004fCopy full SHA for 4eb004f
snippets/cpp/bit-manipulation/find-non-repeating-number.md
@@ -8,7 +8,7 @@ author: ashukr07
8
```cpp
9
#include <vector>
10
11
-int find_non_repeating(const std::vector<int>& nums) {
+int find_non_repeating(const std::vector<int> nums) {
12
int result = 0;
13
for (const int num : nums) {
14
result ^= num;
0 commit comments