728x90 반응형 자바77 프로그래머스 - 중복된 숫자 개수 class Solution { public int solution(int[] array, int n) { int answer = 0; for(int i=0; i 2023. 2. 23. 프로그래머스 - 배열 두배 만들기 class Solution { public int[] solution(int[] numbers) { int[] answer = new int[numbers.length]; for(int i=0; i 2023. 2. 23. 프로그래머스 - 아이스 아메리카노 class Solution { public int[] solution(int money) { int[] answer = new int[2]; answer[0] = money/5500; answer[1] = money%5500; return answer; } } 2023. 2. 23. 프로그래머스 - 삼각형의 완성조건 (1) class Solution { public int solution(int[] sides) { int answer = 0; if(sides[0]>sides[1] && sides[0] > sides[2]){ answer = sides[0] sides[0] && sides[1] > sides[2]){ answer = sides[1] < sides[0] + sides[2] ? 1 : 2; }else{ answer = sides[2] < sides[0] + sides[1] ? 1 : 2; } return answer; } } 2023. 2. 22. 이전 1 ··· 10 11 12 13 14 15 16 ··· 20 다음 728x90 반응형