[PCCE 기출문제] 5번 / 산책 Lv. 0

박영준·2024년 4월 3일
0

코딩테스트

목록 보기
297/300

빈칸에 입력하는 문제

해결법

방법 1

class Solution {
    public int[] solution(String route) {
        int east = 0;
        int north = 0;
        int[] answer = new int [2];
        for(int i=0; i<route.length(); i++){
            switch(route.charAt(i)){
                case 'N':
                    north++;
                    break;
                case 'S':
					north--;
                    break;
                case 'E':
					east++;
                    break;
                case 'W':
					east--;
					break;
            }
        }
        answer[0] = east;
        answer[1] = north;
        return answer;
    }
}

[PCCE 기출문제] 5번 / 산책

profile
개발자로 거듭나기!

0개의 댓글