[Swift]프로그래머스 모의고사
Roel Downey
모의고사 문제 - 문제 링크: 프로그래머스 풀이 import Foundation func solution(_ answers:[Int]) -> [Int] { let answer = ( one: [1, 2, 3, 4, 5], // index % 5 two: [2, 1, 2, 3, 2, 4, 2, 5], // index % 8 three: [3, 3, 1, 1, 2, 2, 4, 4, 5, 5] // index % 10 ) var result = [1:0, 2:0, 3:0] for (index, value) in answers.enumerated() { if value == answer.one[index % 5] { result[1] = result[1]! + 1 } if value == answer.two[i..