[Level2] 방문 길이
826 단어 programmersprogrammers
🛠 문제
👩🏻💻 해결 방법
dictionary와 set을 적절히 활용하는 문제였다
이미 지나간 길은 무시하기 위해서 add를 두번 해주어야 했다
소스 코드
def solution(dirs):
d = {'U':(0, -1), 'D':(0, 1), 'L':(-1,0), 'R':(1,0)}
move = set()
cur_x, cur_y = (0, 0)
for i in dirs:
next_x, next_y = cur_x + d[i][0], cur_y + d[i][1]
if -5 <= next_x <= 5 and -5 <= next_y <= 5:
move.add((cur_x, cur_y, next_x, next_y))
move.add((next_x, next_y, cur_x, cur_y))
cur_x, cur_y = next_x, next_y
return len(move) // 2
Author And Source
이 문제에 관하여([Level2] 방문 길이), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@hyunnn/Level2-방문-길이저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)