Skip to content

Commit 2052d86

Browse files
committed
chore: 개행문자 추가
1 parent b6704fe commit 2052d86

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

house-robber/jinah92.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,4 @@ def getAmount(start: int) -> int:
1313
return memo[start]
1414

1515
return getAmount(0)
16+

longest-consecutive-sequence/jinah92.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,4 @@ def longestConsecutive(self, nums: List[int]) -> int:
1515
candidates.append(result)
1616

1717
return max(candidates) if len(candidates) > 0 else 0
18+

top-k-frequent-elements/jinah92.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,4 @@ def topKFrequent(self, nums: List[int], k: int) -> List[int]:
99
counters[num] = 1
1010

1111
return [val[0] for val in sorted(counters.items(), key=lambda x: x[1], reverse=True)[:k]]
12+

0 commit comments

Comments
 (0)