728x90 반응형 자바77 프로그래머스 - 문자열 뒤집기 class Solution { public String solution(String my_string) { String answer = ""; StringBuffer sb = new StringBuffer(my_string); answer = sb.reverse().toString(); return answer; } } 2023. 2. 22. 프로그래머스 - 배열 뒤집기 class Solution { public int[] solution(int[] num_list) { int[] answer = new int[num_list.length]; for(int i=0; i 2023. 2. 22. 프로그래머스 - 배열 원소의 길이 class Solution { public int[] solution(String[] strlist) { int[] answer = new int[strlist.length]; for(int i=0; i 2023. 2. 22. 프로그래머스 - 점의 위치 구하기 class Solution { public int solution(int[] dot) { int answer; if(dot[0] > 0){ if(dot[1] > 0) answer = 1; else answer = 4; }else{ if(dot[1] > 0) answer = 2; else answer= 3; } return answer; } } 2023. 2. 21. 이전 1 ··· 13 14 15 16 17 18 19 20 다음 728x90 반응형