[Codetree] 되돌아오기 2 Python
·
🔻PS/Codetree
https://www.codetree.ai/missions/5/problems/come-back-2/description 코드트리 | 코딩테스트 준비를 위한 알고리즘 정석국가대표가 만든 코딩 공부의 가이드북 코딩 왕초보부터 꿈의 직장 코테 합격까지, 국가대표가 엄선한 커리큘럼으로 준비해보세요.www.codetree.ai import sysinput = sys.stdin.readlinex = 0y = 0d = 0direct = {"N":0, "E": 1, "S":2, "W":3}dx = [1, 0, -1, 0]dy = [0, 1, 0, -1]cnt = 0cmd = list(input().rstrip())for c in cmd: if c == 'L': d = (d+3)%4 elif ..