Skip to content

Commit 4eb004f

Browse files
committed
remove unnecessary reference
1 parent b58e3ea commit 4eb004f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

snippets/cpp/bit-manipulation/find-non-repeating-number.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ author: ashukr07
88
```cpp
99
#include <vector>
1010

11-
int find_non_repeating(const std::vector<int>& nums) {
11+
int find_non_repeating(const std::vector<int> nums) {
1212
int result = 0;
1313
for (const int num : nums) {
1414
result ^= num;

0 commit comments

Comments
 (0)