Skip to content

Commit 8c1043e

Browse files
committed
fix: add line breaks
1 parent ab85227 commit 8c1043e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

two-sum/dusunax.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ def twoSum(self, nums: List[int], target: int) -> List[int]:
3030
pairNum = target - nums[i]
3131
if pairNum in map:
3232
return [map.get(pairNum), i]
33-
map[nums[i]] = i
33+
map[nums[i]] = i

0 commit comments

Comments
 (0)