Skip to content

Commit 3dd8ae4

Browse files
add a solution for 79
1 parent 4cc5d27 commit 3dd8ae4

File tree

1 file changed

+1
-1
lines changed
  • src/main/java/com/fishercoder/solutions

1 file changed

+1
-1
lines changed

src/main/java/com/fishercoder/solutions/_79.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ private boolean search(char[][] board, int i, int j, String word, int index) {
8888

8989
public static class Solution3 {
9090
/**
91-
* I came up with below solution completely independelty on 10/7/2021, although space complexity is O(m*n) instead of constant.
91+
* I came up with below solution completely independently on 10/7/2021, although space complexity is O(m*n) instead of constant.
9292
*/
9393
public boolean exist(char[][] board, String word) {
9494
int m = board.length;

0 commit comments

Comments
 (0)