목록전체 글 (493)
오늘이라도
[4일차][프로그래머스, 120813번, Lv. 0] 짝수는 싫어요
문제 내 풀이 채점 결과 피드백 Integer List를 int Array로 바꾸는 방법 int[] answer = tempList.stream().mapToInt(i -> i).toArray();
개발 공부/코딩테스트
2022. 12. 20. 16:47
[4일차][프로그래머스, 120812번, Lv. 0] 최빈값 구하기
문제 내 풀이 import java.util.List; import java.util.ArrayList; import java.util.Arrays; import java.util.Map; import java.util.HashMap; import java.util.Comparator; class Solution { public int solution(int[] array) { int answer = 0; int[] tempArray = Arrays.stream(array).distinct().toArray(); Map tempMap = new HashMap(); for(int i : tempArray) { int count = 0; for(int j : array) { if(i == j) { count..
개발 공부/코딩테스트
2022. 12. 20. 16:26