Skip to content

Commit 521c32a

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

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

contains-duplicate/hu6r1s.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,3 @@ def containsDuplicate(self, nums: List[int]) -> bool:
1010
return True
1111
else:
1212
return False
13-

two-sum/hu6r1s.py

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

0 commit comments

Comments
 (0)