728x90 반응형 알고리즘 문제풀이/Programmers - 자바146 프로그래머스 - 최빈값 구하기 class Solution { public int solution(int[] array) { int answer = 0; int len = array.length; int[][] ary = new int[len][2]; for(int i=0; i 2023. 3. 22. 프로그래머스 - 특이한 정렬 import java.util.*; class Solution { public int[] solution(int[] numlist, int n) { int[] answer = new int[numlist.length]; List list = new ArrayList(); for(int a : numlist){ list.add(a); } for(int i=0; i 2023. 3. 22. 프로그래머스 - 치킨 쿠폰 class Solution { public int solution(int chicken) { int coupon = chicken; int service = 0; while(coupon >= 10){ service += coupon/10; coupon = (coupon/10) + coupon %10; } return service; } } 2023. 3. 21. 프로그래머스 - 로그인 성공? class Solution { public String solution(String[] id_pw, String[][] db) { for(int i=0; i 2023. 3. 21. 이전 1 ··· 13 14 15 16 17 18 19 ··· 37 다음 728x90 반응형