Skip to content

Commit b66f205

Browse files
committed
fix: Add missing newline characters for proper formatting
1 parent 6af0efb commit b66f205

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

contains-duplicate/hu6r1s.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,5 @@ def containsDuplicate(self, nums: List[int]) -> bool:
99
if v >= 2:
1010
return True
1111
else:
12-
return False
12+
return False
13+

two-sum/hu6r1s.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,5 @@ def twoSum(self, nums: List[int], target: int) -> List[int]:
1414
for i in range(len(nums)-1):
1515
for j in range(i+1, len(nums)):
1616
if nums[i] + nums[j] == target:
17-
return [i, j]
17+
return [i, j]
18+

0 commit comments

Comments
 (0)