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 | 31 |
Tags
- vscode cp949
- 코딩테스트
- MomentumParameters
- not a git repository
- print("""
- 코딩부트캠프후기
- 99클럽
- 개발자사이드프로젝트
- 주니어개발자멘토링
- 10430번
- EnvCommandError
- cp949
- 개발자스터디
- 항해플러스
- 파이썬 |
- Til
- print sep
- 파이썬
- Fatal Python error: init_fs_encoding: failed to get the Python codec of the filesystem encoding
- 파이썬 sep
- fatal:not a git repository
- 항해
- 99클럽 #99일지 #코딩테스트 #개발자스터디 #항해 #til
- 파이썬 map 함수
- 항해99
- 파이썬 int()
- 99일지
- 백준
- 주니어개발자역량강화
- 파이썬 클래스
Archives
- Today
- Total
선발대
[스파르타] 99클럽 2기 코테스터디 39일차 TIL / leet 1338 본문
Leetcode: 1338. Reduce Array Size to The Half (링크)
class Solution:
def minSetSize(self, arr: List[int]) -> int:
arr_length= len(arr)
target = len(arr) // 2
cnt = 0
counter_arr = collections.Counter(arr)
frequency = sorted(counter_arr.values())
while arr_length > target:
arr_length -= frequency.pop()
cnt += 1
return cnt
참고한 블로그: https://velog.io/@minu/LeetCode-1338.-Reduce-Array-Size-to-The-Half
'스파르타코딩클럽 > 활동 내용' 카테고리의 다른 글
[스파르타] 99클럽 2기 코테스터디 38일차 TIL / leet 921 (0) | 2024.06.26 |
---|---|
[스파르타] 99클럽 2기 코테스터디 37일차 TIL / leet 921 (0) | 2024.06.25 |
[스파르타] 99클럽 2기 코테스터디 36일차 TIL / leet 2390 (0) | 2024.06.24 |
[스파르타] 99클럽 2기 코테스터디 35일차 TIL / leet 341 (0) | 2024.06.23 |
[스파르타] 99클럽 2기 코테스터디 34일차 TIL / leet 1823 (0) | 2024.06.22 |
Comments