Skip to content

Commit f551b03

Browse files
committed
add new line
1 parent 0307632 commit f551b03

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

two-sum/hyeri0903.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
for j in range(i+1, len(nums)):
66
if nums[i] + nums[j] == target:
77
return [i, j]
8-
8+

0 commit comments

Comments
 (0)