728x90 반응형 알고리즘 문제풀이146 프로그래머스 - 인덱스 바꾸기 class Solution { public String solution(String my_string, int num1, int num2) { String[] ars = new String[my_string.length()]; String temp1 = my_string.substring(num1, num1+1); String temp2 = my_string.substring(num2, num2+1); for(int i=0; i 2023. 3. 6. 프로그래머스 - 최댓값 만들기 (2) import java.util.Arrays; class Solution { public int solution(int[] numbers) { Arrays.sort(numbers); int max = numbers[numbers.length-1] * numbers[numbers.length-2]; int min = numbers[0] * numbers[1]; if(max>min) return max; else return min; } } 2023. 3. 6. 프로그래머스 - 주사위의 개수 class Solution { public int solution(int[] box, int n) { int answer = 1; for(int i=0; i 2023. 3. 6. 프로그래머스 - n의 배수 고르기 class Solution { public int[] solution(int n, int[] numlist) { int[] answer = {}; int count = 0; for(int num : numlist){ if(num%n==0){ count++; } } answer = new int[count]; int i = 0; for(int num : numlist){ if(num%n==0){ answer[i] = num; i++; } } return answer; } } 2023. 3. 5. 이전 1 ··· 22 23 24 25 26 27 28 ··· 37 다음 728x90 반응형