프로그래머스 LV1 - 모의고사
전에 한번 오지게 도전했다가 실패했던 문제. 하지만 오늘 문득 오? 싶은 해결 방안이 떠올랐고 그 방법으로 풀이 성공 def solution(answers): ans = [0] * 4 a = [1,2,3,4,5] b = [2,1,2,3,2,4,2,5] c = [3,3,1,1,2,2,4,4,5,5] first = a * (len(answers)//5) + a[:(len(answers)%5)] second = b * (len(answers)//8) + b[:(len(answers)%8)] third = c * (len(answers)//10) + c[:(len(answers)%10)] correct1 = [x-y for x,y in zip(first,answers)] correct2 = [x-y for x,..