프로그래머스 공원 산책

Algorithm

[프로그래머스] 공원 산책 | Python | 델타 탐색, 구현 | Lv.1

문제 링크 : https://school.programmers.co.kr/learn/courses/30/lessons/172928 def solution(park, routes): dir_dict = {'N': (-1, 0), 'S': (1, 0), 'W': (0, -1), 'E': (0, 1)} # 출발 지점 탐색 r = c = 0 for y in range(len(park)): for x in range(len(park[y])): if park[y][x] == 'S': r, c = y, x break for route in routes: # 각 명령문별 방향 및 이동거리 추출 dr, dc = dir_dict[route[0]] moves = int(route[2]) # park의 범위를 벗어나지 않는지..

minkyoung BAE
'프로그래머스 공원 산책' 태그의 글 목록