Skip to content

Commit 4914619

Browse files
committed
added newline
1 parent 7863575 commit 4914619

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

two-sum/yayyz.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ def twoSum(self, nums: List[int], target: int) -> List[int]:
55
complement = target - num
66
if complement in hashmap:
77
return [hashmap[complement], i]
8-
hashmap[num] = i
8+
hashmap[num] = i

0 commit comments

Comments
 (0)