Skip to content

Commit e3ec00c

Browse files
Update taurus09318976.py
1 parent c4a9ab6 commit e3ec00c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

word-search/taurus09318976.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def dfs(r, c, i):
1414
if i == len(word):
1515
return True
1616

17-
#윺효성 검사
17+
#유효성 감사
1818
# 범위를 벗어나거나 이미 방문했거나 현재 셀의 문자가 단어의 현재 문자와 일치하지 않는 경우
1919
# 범위 검사
2020
if r < 0 or r >= rows or c < 0 or c >= cols:

0 commit comments

Comments
 (0)