def solution(nums):
answer = 0
lens = len(nums)/2
uq = set(nums)
if lens >= len(uq):
answer = len(uq)
elif lens < len(uq):
answer = lens
return int(answer)
728x90
반응형
LIST
'알고리즘' 카테고리의 다른 글
[프로그래머스] 명예의 전당(1) (0) | 2023.10.07 |
---|---|
[프로그래머스] 카드 뭉치 (0) | 2023.10.07 |
[프로그래머스] 과일 장수 (0) | 2023.10.07 |
[프로그래머스] 그룹별 조건에 맞는 식당 목록 출력하기 (0) | 2023.10.07 |
[프로그래머스] 오프라인/온라인 판매 데이터 통합하기 (0) | 2023.10.07 |