Skip to content

Commit 0307632

Browse files
committed
개행추가
1 parent 254e4c7 commit 0307632

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

two-sum/hyeri0903.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,5 @@ def twoSum(self, nums: List[int], target: int) -> List[int]:
44
for i in range(len(nums)):
55
for j in range(i+1, len(nums)):
66
if nums[i] + nums[j] == target:
7-
return [i, j]
7+
return [i, j]
8+

0 commit comments

Comments
 (0)