Skip to content

Commit 97b92bf

Browse files
author
김가은
committed
two-sum solution
1 parent e7839d5 commit 97b92bf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

two-sum/paran22.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ def twoSum(self, nums: List[int], target: int) -> List[int]:
77
second_num = target - first_num
88
if second_num in num_dict and num_dict[second_num] != i:
99
return [i, num_dict[second_num]]
10-
10+

0 commit comments

Comments
 (0)