Skip to content

Commit d067200

Browse files
committed
adding line break
1 parent 9497108 commit d067200

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

contains-duplicate/daiyongg-kim.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,6 @@ def containsDuplicate(self, nums: List[int]) -> bool:
66
if num in my_set:
77
return True
88
my_set.add(num)
9-
return False
9+
return False
10+
11+

top-k-frequent-elements/daiyongg-kim.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ def topKFrequent(self, nums: List[int], k: int) -> List[int]:
1313
for i in range(k):
1414
result.append(sort_by_value[i][0])
1515
return result
16-
16+

0 commit comments

Comments
 (0)