Skip to content

Commit c7f9bb4

Browse files
committed
fix: posix
1 parent 908be5c commit c7f9bb4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

contains-duplicate/changhyumm.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,5 @@ def containsDuplicate(self, nums: List[int]) -> bool:
66
return True
77
else:
88
dic[num] = True
9-
return False
9+
return False
10+

two-sum/changhyumm.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,3 @@ def twoSum(self, nums: List[int], target: int) -> List[int]:
1010
return [idx, dic[target-num]]
1111
else:
1212
dic[num] = idx
13-

0 commit comments

Comments
 (0)