Skip to content

Commit a3dbefd

Browse files
committed
개행문자 추가
1 parent 0c1602e commit a3dbefd

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

contains-duplicate/treeStone94.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ def containsDuplicate(self, nums: List[int]) -> bool:
33
if len(set(nums)) == len(nums):
44
return False
55
else:
6-
return True
6+
return True

two-sum/treeStone94.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
t = target - n
66
if t in nums[i+1:]:
77
answer = [i, (i+1) +nums[i+1:].index(t)]
8-
return answers
8+
return answers

0 commit comments

Comments
 (0)