728x90 반응형 Java77 프로그래머스 - 문자 반복 출력하기 class Solution { public String solution(String my_string, int n) { String answer = ""; for(int i=0; i 2023. 2. 22. 프로그래머스 - 최댓값 만들기 (1) import java.util.Arrays; class Solution { public int solution(int[] numbers) { Arrays.sort(numbers); return numbers[numbers.length-1] * numbers[numbers.length-2]; } } 2023. 2. 22. 프로그래머스 - 특정 문자 제거하기 class Solution { public String solution(String my_string, String letter) { String answer = ""; answer = my_string.replace(letter,""); return answer; } } 2023. 2. 22. 프로그래머스 - 피자 나눠 먹기 (3) class Solution { public int solution(int slice, int n) { int answer = 0; if(n%slice == 0){ answer = n/slice; } else{ answer = n/slice + 1; } return answer; } } 2023. 2. 22. 이전 1 ··· 11 12 13 14 15 16 17 ··· 20 다음 728x90 반응형