We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4cc5d27 commit 3dd8ae4Copy full SHA for 3dd8ae4
src/main/java/com/fishercoder/solutions/_79.java
@@ -88,7 +88,7 @@ private boolean search(char[][] board, int i, int j, String word, int index) {
88
89
public static class Solution3 {
90
/**
91
- * I came up with below solution completely independelty on 10/7/2021, although space complexity is O(m*n) instead of constant.
+ * I came up with below solution completely independently on 10/7/2021, although space complexity is O(m*n) instead of constant.
92
*/
93
public boolean exist(char[][] board, String word) {
94
int m = board.length;
0 commit comments