컴공생의 다이어리
[프로그래머스] 폰켓몬 - 파이썬(Python) 본문
[프로그래머스] 폰켓몬 - 파이썬(Python)
def solution(nums):
return min(len(nums) // 2, len(set(nums)))
https://programmers.co.kr/learn/courses/30/lessons/1845
728x90
'Development > Algorithm & Coding Test' 카테고리의 다른 글
[프로그래머스] 짝지어 제거하기 - 파이썬(Python) (0) | 2022.07.05 |
---|---|
[프로그래머스] 예상 대진표 - 파이썬(Python) (0) | 2022.07.04 |
[프로그래머스] 전력망을 둘로 나누기 - 파이썬(Python) (0) | 2022.07.03 |
[프로그래머스] 피로도 - 파이썬(Python) (0) | 2022.07.02 |
[파이썬, Python] 백준 12761번 : 돌다리 (0) | 2022.07.01 |
Comments