내 풀이
import collections
def solution(nums):
dict = collections.Counter(nums)
if (len(nums) // 2) >= len(dict):
return len(dict)
else:
return len(nums) // 2
다른사람 풀이
def solution(ls):
return min(len(ls)/2, len(set(ls)))
728x90
'코테 > 프로그래머스' 카테고리의 다른 글
프로그래머스 위장 (0) | 2022.12.28 |
---|---|
프로그래머스 전화번호 목록 (0) | 2022.12.28 |
프로그래머스 네트워크 (0) | 2022.12.27 |
[프로그래머스] [Python] 게임 맵 최단거리 - bfs, dfs (0) | 2022.12.27 |
프로그래머스 타깃 넘버 (0) | 2022.12.27 |