기본 틀 :using System;public class Solution { public int[] solution(int[] progresses, int[] speeds) { int[] answer = new int[] {}; return answer; }} 처음에는 progresses와 speeds를 List에 담아서 List의 앞에서 진행률이 100인 요소를 구해 List에서 제거와 동시에 count를 증가시켜 개수를 구할 계획이었다. 이렇게, 생각한 이유는 Queue로 progresses와 speeds를 담으면 index 조회 및 값 증가가 불가능해 불편할 것이라 생각했기 때문이다. using System;using System.Collections.Gene..