반응형
Recent Posts
Notice
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
- BOJ
- 백준
- 개발자 취업
- python 2309
- softeer
- 구현
- 큐
- 백준 막대기
- python 10989
- 항해99
- 스택
- python 10250
- 코딩테스트 준비
- 일곱 난쟁이
- 99클럽
- Python
- leetcode 2405
- 파이썬
- til
- Python 20001
- BFS
- 99항해
- 백준 2309
- boj 2309
- python 1259
- 백준 카드1
- python 14503
- 프로그래머스
- leetcode
- 백준 팰린드롬수
Archives
- Today
- Total
목록2024/06/20 (1)
동까의 코딩
[99클럽] 31일차 TIL
https://leetcode.com/problems/top-k-frequent-elements/submissions/1294689495/ 정렬하여 카운트를 해주고, 많은 숫자를 보여한 숫자를 정답칸에 K만큼 저장해주고 반환하는 문제입니다. class Solution: def topKFrequent(self, nums: List[int], k: int) -> List[int]: cnt = {} cnt_list = [[] for _ in range(len(nums) + 1)] answer = [] for num in nums: cnt[num] = 1 + cnt.get(num, 0) for key, val in cnt.i..
문제 풀이/99클럽
2024. 6. 20. 23:52