1. 내 풀이gpt의 도움을 받아 작성했다.Double.compare(), Integer.compare() 함수를 활용할 수 있게 되었다.import java.util.*;class Solution { public int[] solution(int N, int[] stages) { int[] stageCount = new int[N + 2]; int challengedNumber = stages.length; for (int stage : stages) { stageCount[stage]++; } Map failureRateMap = new HashMap(); for (int i = 1; i sorted..