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 |
Tags
- combinations
- Unit Testing
- HTTP 완벽 가이드
- SQL
- Python
- Stack
- AWS
- postreSQL
- Bruteforce
- ORM
- algorithm
- permutations
- Gunicorn
- Git
- Django
- TDD
- Programmers
- utils
- pytest
- dictionary
- codecov
- ws
- stateful
- 백준
- Query
- stack&que
- was
- stateless
- greedy
- Q objects
Archives
- Today
- Total
해피 코딩!
[프로그래머스] 모의고사 본문
link
def solution(answers):
answer = []
soopo_1 = [1, 2, 3, 4, 5,]
soopo_2 = [2, 1, 2, 3, 2, 4, 2, 5]
soopo_3 = [3, 3, 1, 1, 2, 2, 4, 4, 5, 5]
soopo1 = 0
soopo2 = 0
soopo3 = 0
for index in range(len(answers)):
if soopo_1[index % len(soopo_1)] == answers[index]:
soopo1 += 1
if soopo_2[index % len(soopo_2)] == answers[index]:
soopo2 += 1
if soopo_3[index % len(soopo_3)] == answers[index]:
soopo3 += 1
soopo_list = [soopo1, soopo2, soopo3]
soopo_max = max(soopo_list)
for index, soopo in enumerate(soopo_list):
if soopo == soopo_max:
answer.append(index+1)
return answer
'알고리즘' 카테고리의 다른 글
[프로그래머스] 주식가격 (0) | 2020.12.12 |
---|---|
[프로그래머스] 완주하지 못한 선수 (0) | 2020.12.12 |
[프로그래머스] 두 개 뽑아서 더하기 (0) | 2020.12.12 |
[프로그래머스] 다리를 지나는 트럭 (0) | 2020.12.12 |
[프로그래머스] 내적 (0) | 2020.12.12 |
Comments