728x90 반응형 알고리즘 문제풀이146 프로그래머스 - 순서쌍의 개수 class Solution { public int solution(int n) { int answer = 0; for(int i = 1; i 2023. 2. 23. 프로그래머스 - 중복된 숫자 개수 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 ··· 27 28 29 30 31 32 33 ··· 37 다음 728x90 반응형