Skip to content

Commit 20070c2

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 15658bf commit 20070c2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

bit_manipulation/single_number.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@ def single_number(nums: list[int]) -> int:
2525
if __name__ == "__main__":
2626
# Test cases
2727
print(single_number([4, 1, 2, 1, 2])) # Output: 4
28-
print(single_number([2, 2, 1])) # Output: 1
29-
print(single_number([1])) # Output: 1
30-
print(single_number([5, 3, 5, 7, 3])) # Output: 7
28+
print(single_number([2, 2, 1])) # Output: 1
29+
print(single_number([1])) # Output: 1
30+
print(single_number([5, 3, 5, 7, 3])) # Output: 7

0 commit comments

Comments
 (0)