728x90 반응형 분류 전체보기273 프로그래머스 - 배열 뒤집기 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) class Solution { public int solution(int n) { int answer; if(n 2023. 2. 21. 이전 1 ··· 62 63 64 65 66 67 68 69 다음 728x90 반응형