반응형
문제
https://school.programmers.co.kr/learn/courses/30/lessons/42840
문제 풀이
단순 구현 완전탐색.
코드
def solution(answers):
p1 = [1,2,3,4,5,1,2,3,4,5]
p2 = [2,1,2,3,2,4,2,5]
p3 = [3,3,1,1,2,2,4,4,5,5]
res = [0, 0, 0]
for i in range(len(answers)):
if answers[i] == p1[i%10] : res[0] += 1
if answers[i] == p2[i%8] : res[1] += 1
if answers[i] == p3[i%10] : res[2] += 1
tmp = []
for i in range(len(res)):
if res[i] == max(res):
tmp.append(i+1)
return tmp
반응형
'알고리즘 > 프로그래머스 문제풀이' 카테고리의 다른 글
[프로그래머스] lv.1 콜라 문제 python 풀이 (0) | 2023.10.24 |
---|---|
[프로그래머스] lv.1 최소직사각형 python 풀이 (0) | 2023.10.24 |
[프로그래머스] lv.1 추억 점수 python 풀이 (0) | 2023.10.23 |
[프로그래머스] lv.1 이름이 없는 동물의 아이디 sql 풀이 (0) | 2023.10.23 |
[프로그래머스] lv.1 수박수박수박수박수? python 풀이 (1) | 2023.10.23 |