728x90
반응형
SMALL
프로그래머스 Level 1 모의고사를 파이썬을 통해 풀어보았다.
programmers.co.kr/learn/courses/30/lessons/42840
Level 1 - 모의고사
def solution(answers):
supo = [0]*3
supo_1 = [1,2,3,4,5]
supo_2 = [2,1,2,3,2,4,2,5]
supo_3 = [3,3,1,1,2,2,4,4,5,5]
for i in range(len(answers)) :
if answers[i] == supo_1[i%5] :
supo[0] += 1
if answers[i] == supo_2[i%8] :
supo[1] += 1
if answers[i] == supo_3[i%10] :
supo[2] += 1
max_num = max(supo)
answer = []
for i in range(3) :
if supo[i] == max_num :
answer.append(i+1)
return answer
728x90
반응형
SMALL
'Problem Solving > programmers' 카테고리의 다른 글
[Programmers] Level 1 체육복.py (0) | 2021.04.27 |
---|---|
[Programmers] Level 1 체육복.java (0) | 2021.04.27 |
[Programmers] Level 1 완주하지 못한 선수.java (0) | 2021.04.26 |
[Programmers] Level 1 크레인 인형뽑기 게임.py (0) | 2021.04.26 |
[programmers] Level 1 신규 아이디 추천.py (0) | 2021.03.30 |