Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 | 29 |
30 |
Tags
- 파이썬 |
- 99클럽 #99일지 #코딩테스트 #개발자스터디 #항해 #til
- 코딩테스트
- not a git repository
- 파이썬 int()
- 주니어개발자역량강화
- EnvCommandError
- 파이썬
- 99일지
- 파이썬 클래스
- 항해플러스
- 코딩부트캠프후기
- 주니어개발자멘토링
- 항해99
- 항해
- 99클럽
- MomentumParameters
- 개발자사이드프로젝트
- 백준
- vscode cp949
- Fatal Python error: init_fs_encoding: failed to get the Python codec of the filesystem encoding
- cp949
- print sep
- Til
- fatal:not a git repository
- 10430번
- 파이썬 map 함수
- 개발자스터디
- print("""
- 파이썬 sep
Archives
- Today
- Total
목록2024/06/20 (1)
선발대
[스파르타] 99클럽 2기 코테스터디 32일차 TIL / leet 347
Leetcode: 347. Top K Frequent Elements (링크) class Solution: def topKFrequent(self, nums: List[int], k: int) -> List[int]: ans = [] hash = defaultdict(int) for i in nums: hash[i] += 1 hash = sorted(hash.items(), key=lambda x: -x[1]) for num in hash[:k]: ans.append(num[0]) return ans
스파르타코딩클럽/활동 내용
2024. 6. 20. 22:25