[Programmers] Level1. 모의고사 (Java)
Level1. 모의고사 문제설명 ) 풀이Code ) 더보기 import java.util.ArrayList; public class Solution { public int[] solution(int[] answers) { int[] a = new int[] {1, 2, 3, 4, 5}; int[] b = new int[] {2, 1, 2, 3, 2, 4, 2, 5}; int[] c = new int[] {3, 3, 1, 1, 2, 2, 4, 4, 5, 5}; //제시된 정답규칙 int[] score = new int[3]; //세 학생의 점수 비교를 위한 배열 for (int i=0; i
더보기