We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4a9ab6 commit e3ec00cCopy full SHA for e3ec00c
word-search/taurus09318976.py
@@ -14,7 +14,7 @@ def dfs(r, c, i):
14
if i == len(word):
15
return True
16
17
- #윺효성 검사
+ #유효성 감사
18
# 범위를 벗어나거나 이미 방문했거나 현재 셀의 문자가 단어의 현재 문자와 일치하지 않는 경우
19
# 범위 검사
20
if r < 0 or r >= rows or c < 0 or c >= cols:
0 commit comments