Skip to content

Commit 2e101ee

Browse files
authored
Update Solution.java
1 parent dd2fe2d commit 2e101ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/g0001_0100/s0079_word_search/Solution.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
// #2024_11_11_Time_64_ms_(98.51%)_Space_41.6_MB_(51.63%)
66

77
public class Solution {
8-
public boolean exists = false;
8+
private boolean exists = false;
99

1010
public boolean exist(char[][] board, String word) {
1111
for (int i = 0; i < board.length; i++) {

0 commit comments

Comments
 (0)