728x90
https://school.programmers.co.kr/learn/courses/30/lessons/172928
프로그래머스
코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.
programmers.co.kr
머리가 안돌아가서 정답보고 풀었습니다.
⭐️⭐️추후에 정답보지말고 혼자 다시 풀어볼것
def solution(park, routes):
# 초기 위치
a = 0
b = 0
# 시작 위치 찾기
for i in range(len(park)):
for j in range(len(park[i])):
if park[i][j] == 'S':
a = j
b = i
break
for route in routes:
x = a
y = b
# route의 움직이는 거리안에서
for step in range(int(route[2])):
# 동쪽
if route[0] == 'E' and x != len(park[0])-1 and park[y][x+1] != 'X':
x += 1
if step == int(route[2])-1:
a = x
# 서쪽
elif route[0] == 'W' and x != 0 and park[y][x-1] != 'X':
x -= 1
if step == int(route[2])-1:
a = x
# 남쪽
elif route[0] == 'S' and y != len(park)-1 and park[y+1][x] != 'X':
y += 1
if step == int(route[2])-1:
b = y
# 북쪽
elif route[0] == 'N' and y != 0 and park[y-1][x] != 'X':
y -= 1
if step == int(route[2])-1:
b = y
return [b, a]
728x90
'Algorithm > Programmers' 카테고리의 다른 글
Lv1.추억 점수 (0) | 2023.11.05 |
---|---|
프로그래머스 Lv2. 호텔 대실 - 파이썬 (0) | 2023.08.12 |
Lv2. 과제 진행하기(Python) (0) | 2023.07.04 |
프로그래머스 괄호변환 - python (0) | 2021.03.13 |