문제 1 / 격차-목표 : 게임을 플레이한 N명의 학생들의 점수 중 가장 큰 점수와 가장 작은 점수의 차이를 반환하는 프로그램 구햔 문제 풀이반복문을 이용하여 최댓값과 최소값을 구한 뒤 차를 반환하였다. 최종 코드class Solution { public int solution(int N, int[] scores) { int answer = 0; int max_score = Integer.MIN_VALUE; int min_score = Integer.MAX_VALUE; for(int i=0; i max_score){ max_score = scores[i]; } if(scores[i] ..