Skip to content

Commit 4942fc3

Browse files
committed
week01_1_2_3_solution_개행문자누락
1 parent 3a84f95 commit 4942fc3

1 file changed

Lines changed: 0 additions & 1 deletion

File tree

top-k-frequent-elements/YOOHYOJEONG.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,3 @@ def topKFrequent(self, nums, k):
1212
sorted_cnt = sorted(cnt.items(), key=lambda x: x[1], reverse=True)
1313

1414
return [item[0] for item in sorted_cnt[:k]]
15-

0 commit comments

Comments
 (0)