Skip to content

Commit 3d032d8

Browse files
author
sejineer
committed
two-sum solution fix lint
1 parent 7d436fc commit 3d032d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

two-sum/sejineer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ def twoSum(self, nums: List[int], target: int) -> List[int]:
1111
if x in nums_map:
1212
j = nums_map[x]
1313
return [j, i]
14-
nums_map[v] = i
14+
nums_map[v] = i

0 commit comments

Comments
 (0)