티스토리 뷰
문제출처 - https://programmers.co.kr/learn/courses/30/lessons/42840
def solution(answers):
answer = []
one = [1,2,3,4,5]
two = [2,1,2,3,2,4,2,5]
three = [3,3,1,1,2,2,4,4,5,5]
score = [0,0,0]
for i in range(len(answers)):
if answers[i] == one[i % len(one)]:
score[0] += 1
if answers[i] == two[i % len(two)]:
score[1] += 1
if answers[i] == three[i % len(three)]:
score[2] += 1
max_score = max(score)
for i in range(3):
if score[i] == max_score:
answer.append(i+1)
return answer
'ALGORITHM > 프로그래머스' 카테고리의 다른 글
[Python]프로그래머스 - 2016년(level1) (0) | 2020.02.08 |
---|---|
[Python]프로그래머스 - 가운데 글자 가져오기(level1) (0) | 2020.02.08 |
[C++][완전탐색] 프로그래머스 - 소수 찾기(Level2) (2) | 2019.12.31 |
[C++]프로그래머스 - 같은 숫자는 싫어(level1) (0) | 2019.12.27 |
[C++]프로그래머스 - 단어 변환(level3) (0) | 2019.12.06 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 재귀
- C++
- left join
- 백준
- dictionary
- combination
- 딕셔너리
- 문자열
- 괄호
- 구현
- BOJ
- SWExpert
- SW Expert
- Permutation
- hash
- 완전탐색
- 우선순위큐
- programmers
- 프로그래머스
- Python
- 순열
- 힙
- 파이썬
- 2019 Kakao Blind Recruitment
- 코딩테스트
- 문자열처리
- 해시
- 정렬
- 스택
- 2020 KAKAO BLIND RECRUITMENT
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함