728x90 반응형 전체 글273 프로그래머스 - 나누어 떨어지는 숫자 배열 import java.util.*; class Solution { public int[] solution(int[] arr, int divisor) { int count = 0; Arrays.sort(arr); for(int a : arr){ if(a%divisor==0){ count++; } } if(count==0){ return new int[]{-1}; } int[] answer = new int[count]; int k = 0; for(int a: arr){ if(a%divisor==0){ answer[k] = a; k++; } } return answer; } } 2023. 3. 26. 프로그래머스 - 핸드폰 번호 가리기 class Solution { public String solution(String phone_number) { String answer = ""; String[] ars = phone_number.split(""); for(int i=0; i 2023. 3. 26. 프로그래머스 - 음양 더하기 class Solution { public int solution(int[] absolutes, boolean[] signs) { int answer = 0; for(int i=0; i 2023. 3. 26. 프로그래머스 - 콜라츠 추측 class Solution { public int solution(long num) { int answer = 0; if(num==1){ return 0; } while(true){ if(num%2==0){ num/=2; answer++; } else if(num%2!=0){ num = (num*3)+1; answer++; } if(answer>=500){ return -1; } if(num==1){ break; } } return answer; } } 2023. 3. 25. 이전 1 ··· 16 17 18 19 20 21 22 ··· 69 다음 728x90 반응형