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
- HTML #CSS
- Nullish Coalescing Operator
- HTML
- Hooks
- Redux
- react
- BOJ
- Python
- es11
- Python #Baekjoon
- Default parameter
- 카카오맵 api
- 카카오맵
- css #html
- Template literals
- firebase
- spread operation
- Python #CodeUp
- JavaScript
- React #Hooks
- nextjs
- 프로그래머스
- Next
- CSS
- es6
- optional chanining
- React Kakao map
Archives
- Today
- Total
거북이개발자
[프로그래머스] 체육복 본문
0. 제목
- 프로그래머스 체육복
1. 문제
https://programmers.co.kr/learn/courses/30/lessons/42862
2. 풀이
- 잃어버린 사람과 여분있는 사람이 같은경우
- 같지 않은경우는 -1, +1이 있는경우로 경우를 나눈다.
- 총 인원수 - lost수에서 여분수를 더해서 최종값을 구한다.
3. 코드
def solution(n, lost, reserve):
answer = n-len(lost)
before=len(reserve)
lost_copy=[]
for i in lost:
lost_copy.append(i)
for i in lost_copy:
if i in reserve:
reserve.remove(i)
lost.remove(i)
for i in lost:
if i-1 in reserve:
reserve.remove(i-1)
elif i+1 in reserve:
reserve.remove(i+1)
after=len(reserve)
answer+=before-after
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.19 |
Comments