728x90 반응형 프로그래머스 케릭터의 좌표 자바1 프로그래머스 - 캐릭터의 좌표 class Solution { public int[] solution(String[] keyinput, int[] board) { int[] answer = new int[2]; for(String direction : keyinput){ if(direction.equals("up")){ if(answer[1] -(board[1]-1)/2){ answer[1] += -1; } } else if(direction.equals("right")){ if(answer[0] < (board[0]-1)/2){ answer[0] += 1; } } else if.. 2023. 3. 20. 이전 1 다음 728x90 반응형