[Softeer] [인증평가(1차) 기출] 로봇이 지나간 경로- 파이썬
·
코딩/Softeer
https://softeer.ai/practice/info.do?eventIdx=1&psProblemId=577 Softeer 연습문제를 담을 Set을 선택해주세요. 취소 확인 softeer.ai 해결하지 못했던 문제를 해결하는 쾌감은 엄청나다는걸 다시 한번 느끼며? import sys from collections import deque import copy H, W = map(int,sys.stdin.readline().split()) graph = [] for i in range(H): graph.append(list(sys.stdin.readline().rstrip())) dx = [1, -1, 0, 0] dy = [0, 0, 1, -1] def check_dir(x,y): if x == -1: ..