Skip to content

Commit

Permalink
fix: add line breaks
Browse files Browse the repository at this point in the history
  • Loading branch information
dusunax committed Dec 23, 2024
1 parent ab85227 commit 8c1043e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion two-sum/dusunax.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ def twoSum(self, nums: List[int], target: int) -> List[int]:
pairNum = target - nums[i]
if pairNum in map:
return [map.get(pairNum), i]
map[nums[i]] = i
map[nums[i]] = i

0 comments on commit 8c1043e

Please sign in to comment.