[프로그래머스][Level1][(완전탐색)모의고사]
코드 public int[] solution(int[] answers) { //수포자 답안 int no1[] = {1,2,3,4,5}; int no2[] = {2,1,2,3,2,4,2,5}; int no3[] = {3,3,1,1,2,2,4,4,5,5}; //각 수포자별 정답 갯수 int no1_cnt = 0; int no2_cnt = 0; int no3_cnt = 0; for(int i=0; i= no2_cnt) { max = no1_cnt; } else { max = no2_cnt; } if(max < no3_cnt) { max = no3_cnt; } //최대 정답자 수 확인 int max_no = 0; if(no1_cnt == max) max_no++; if(no2_cnt == max) max_no+..