We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 613251c commit 6429b98Copy full SHA for 6429b98
1 file changed
docs/ps/boj/7562.md
@@ -5,6 +5,7 @@ image: https://til.qriosity.dev/img/m_banner_background.jpg
5
sidebar_label: '7562 - 나이트의 이동'
6
sidebar_position: 7562
7
created_date: 2024-10-24
8
+updated_date: 2024-10-24
9
---
10
11
# 7562 - 나이트의 이동
@@ -97,7 +98,7 @@ if __name__ == '__main__':
97
98
- 파이썬 위키에 따르면, queue 목적의 사용은 `deque`가 우월하다.
99
> If you need to add/remove at both ends, consider using a collections.deque instead.
100
- *(하지만 index로 접근하려면 `list`를 사용해야 함)*
101
+ *(하지만 index로 접근하려면 `list`를 사용해야 함) [[관련하여 흥미로운 레퍼런스](https://velog.io/@mindol/%ED%8C%8C%EC%9D%B4%EC%8D%AC-deque%EC%9D%98-%EC%9D%B8%EB%8D%B1%EC%8A%A4-%EC%A0%91%EA%B7%BC-%EC%97%B0%EC%82%B0-%EC%8B%9C%EA%B0%84-%EB%B3%B5%EC%9E%A1%EB%8F%84)]*
102
103
#### visited 처리
104
- 최단거리이므로 왔던 좌표에 다시 올 일이 없다.
0 commit comments