728x90 반응형 전체 글273 프로그래머스 - 두 정수 사이의 합 class Solution { public long solution(int a, int b) { long answer = 0; if(a>b){ for(int i=b; i 2023. 3. 25. 프로그래머스 - 하샤드 수 class Solution { public boolean solution(int x) { boolean answer = true; String[] str = String.valueOf(x).split(""); int num = 0; for(String a : str){ num += Integer.parseInt(a); } if(x%num!=0){ return false; } return answer; } } 2023. 3. 25. 프로그래머스 - 문자열을 정수로 바꾸기 class Solution { public int solution(String s) { int answer = 0; String[] ars = s.split(""); if(ars[0].equals("-")){ String number =""; for(int i=1; i 2023. 3. 25. 프로그래머스 - 정수 내림차순으로 배치하기 import java.util.*; class Solution { public long solution(long n) { long answer = 0; String[] ars = String.valueOf(n).split(""); Arrays.sort(ars, Collections.reverseOrder()); String number = ""; for(String a : ars){ number +=a; } answer = Long.parseLong(number); return answer; } } 2023. 3. 25. 이전 1 ··· 17 18 19 20 21 22 23 ··· 69 다음 728x90 반응형