내 풀이
def solution(nums):
answer = 0
length = len(nums) // 2
temp = set(list(nums))
if length < len(temp):
answer = length
else:
answer = len(temp)
return answer
다른 방법
def solution(nums):
return min(len(set(nums)), len(nums)//2)
'Engineering WIKI > Programmers' 카테고리의 다른 글
[프로그래머스] 두 개 뽑아서 더하기 (0) | 2022.04.05 |
---|---|
[프로그래머스] 예산 (0) | 2022.04.05 |
[프로그래머스] 3진법 뒤집기 (0) | 2022.04.05 |
[프로그래머스] 실패율 (0) | 2022.04.02 |
[프로그래머스] 모의고사 (0) | 2022.04.01 |
[프로그래머스] 소수 만들기 (0) | 2022.04.01 |
[프로그래머스] 내적 (0) | 2022.04.01 |
[프로그래머스] 음양 더하기 (0) | 2022.04.01 |