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 0e74592 commit 012e8d0Copy full SHA for 012e8d0
word-search/hwanmini.js
@@ -2,7 +2,7 @@
2
// m은 board의 행 수, n은 board의 열 수, 4(상하좌우), l(word)
3
4
// 시간복잡도: O(m * n * 4L)
5
-// 공간복잡도: O(m * n + L)
+// 공간복잡도: O(m * n)
6
7
const d_row = [1, -1, 0, 0]
8
const d_col = [0, 0, -1, 1]
0 commit comments