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
- Python
- Redux
- firebase
- Nullish Coalescing Operator
- React Kakao map
- optional chanining
- HTML #CSS
- JavaScript
- react
- spread operation
- React #Hooks
- Template literals
- 카카오맵
- Python #CodeUp
- Default parameter
- HTML
- CSS
- es11
- css #html
- Python #Baekjoon
- nextjs
- Hooks
- 카카오맵 api
- 프로그래머스
- es6
- Next
- BOJ
Archives
- Today
- Total
거북이개발자
[프로그래머스] 모의고사 본문
0. 제목
- 프로그래머스 모의고사
1. 문제
https://programmers.co.kr/learn/courses/30/lessons/42840
2. 풀이
- 미리 패턴을 리스트에 2차리스트로 설정한다.
- 반복문을 이용한다,
3. 코드
def solution(answers):
answer = []
man=[[1,2,3,4,5], [2,1,2,3,2,4,2,5], [3,3,1,1,2,2,4,4,5,5]]
score=[0, 0, 0]
for i in range(0, 3):
man_len=len(man[i])
for j in range(0, len(answers)):
if answers[j]==man[i][j%man_len]:
score[i]+=1
for k in range(0,3):
if score[k]==max(score):
answer.append(k+1)
return answer
'Algorithm(Python) > programmers(Lv.1)' 카테고리의 다른 글
[프로그래머스] 크레인 인형뽑기 게임 (0) | 2021.06.23 |
---|---|
[프로그래머스] 소수 만들기 (0) | 2021.06.23 |
[프로그래머스] K번째수 (0) | 2021.06.23 |
[프로그래머스] 내적, 로또의 최고순위와 최저순위 (0) | 2021.06.21 |
[프로그래머스] 음양 더하기 (0) | 2021.06.21 |
Comments