728x90 반응형 알고리즘 문제풀이/Programmers - 자바146 프로그래머스 - 2차원으로 만들기 class Solution { public int[][] solution(int[] num_list, int n) { int[][] answer = new int[num_list.length/n][n]; int count = 0; for(int i=0; i 2023. 3. 14. 프로그래머스 - A로 B 만들기 class Solution { public int solution(String before, String after) { String[] args = before.split(""); String[] str = after.split(""); String answer = ""; int count = 0; for(int i=0; i 2023. 3. 14. 프로그래머스 - 중복된 문자 제거 class Solution { public String solution(String my_string) { String answer = ""; String[] ary = my_string.split(""); for(int i=0; i 2023. 3. 9. 프로그래머스 - 합성수 찾기 class Solution { public int solution(int n) { int answer = 0; for(int i=1; i 2023. 3. 9. 이전 1 ··· 19 20 21 22 23 24 25 ··· 37 다음 728x90 반응형