슈콩

COS PRO 1급 JAVA 로봇을 움직여주세요 본문

카테고리 없음

COS PRO 1급 JAVA 로봇을 움직여주세요

shukong 2025. 12. 11. 23:05

 

 

[소스 코드]

import java.util.*;

class Main {
    public int[] solution(String commands) {
        int[] answer = new int[2];
				for(int i=0;i<commands.length();i++){
					if(commands.charAt(i)=='L') answer[0]--;
					else if(commands.charAt(i)=='R') answer[0]++;
					else if(commands.charAt(i)=='U') answer[1]++;
					else answer[1]--;
				}
        return answer;
    }
}