Skip to content

Commit

Permalink
UPDATE : 34.py
Browse files Browse the repository at this point in the history
  • Loading branch information
l-suyeon-l committed Aug 8, 2024
1 parent f8d0ae1 commit 764a5c7
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions SYCHOI/31to40/34.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ def solution(nums) : # nums : 폰켓몬의 종류 번호가 담긴 1차원
if halfN == cnt :
return halfN

# 책의 예시(더 쉬운 방법)
# num_set = set(nums) # 폰켓몬 종류의 번호를 중복이 없는 집합으로 생성
# n = len(nums)
# k = n // 2 # k는 최대 뽑을 수 있는 폰켓몬의 수
# return min(k, len(num_set)) # 폰켓몬 종류 수(num_set)와 뽑을 수 있는 폰켓몬의 수(k) 중에 작은 값을 리턴

return cnt


Expand Down

0 comments on commit 764a5c7

Please sign in to comment.