728x90 반응형 분류 전체보기273 프로그래머스 - 자릿수 더하기 class Solution { public int solution(int n) { int answer = 0; while(n>0){ answer += n%10; n /= 10; } return answer; } } 2023. 2. 23. 프로그래머스 - 중앙값 구하기 import java.util.Arrays; class Solution { public int solution(int[] array) { int answer = 0; Arrays.sort(array); answer = array[array.length/2]; return answer; } } 2023. 2. 23. 프로그래머스 - 편지 class Solution { public int solution(String message) { return message.length()*2; } } 2023. 2. 23. 프로그래머스 - 짝수는 싫어요 class Solution { public int[] solution(int n) { int[] answer = {}; int count = 0; for(int i=1; i 2023. 2. 23. 이전 1 ··· 57 58 59 60 61 62 63 ··· 69 다음 728x90 반응형