Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- Default parameter
- BOJ
- HTML
- react
- nextjs
- Python
- 카카오맵
- spread operation
- Next
- Redux
- Nullish Coalescing Operator
- 카카오맵 api
- Template literals
- css #html
- es11
- Hooks
- Python #CodeUp
- 프로그래머스
- optional chanining
- firebase
- Python #Baekjoon
- React #Hooks
- es6
- HTML #CSS
- CSS
- JavaScript
- React Kakao map
Archives
- Today
- Total
거북이개발자
[프로그래머스] 폰켓몬 본문
0. 제목
- 프로그래머스 폰켓몬
1. 문제
https://programmers.co.kr/learn/courses/30/lessons/1845
2. 풀이
- 최대 종류수는 N/2이다
- 중복되지 않은 배열을 만들어서 N/2보다 작으면 그 배열을 len값 아니면 N/2값이다.
3. 코드
def solution(nums):
list=[]
for i in nums:
if i not in list:
list.append(i)
if((len(nums)/2) <= len(list)):
answer=len(nums)/2
else:
answer=len(list)
return answer
'Algorithm(Python) > programmers(Lv.1)' 카테고리의 다른 글
[프로그래머스] K번째수 (0) | 2021.06.23 |
---|---|
[프로그래머스] 내적, 로또의 최고순위와 최저순위 (0) | 2021.06.21 |
[프로그래머스] 음양 더하기 (0) | 2021.06.21 |
[프로그래머스] 체육복 (0) | 2021.06.21 |
[프로그래머스] 완주하지 못한 선수 (0) | 2021.06.21 |
Comments