Skip to content

Commit 99b00ed

Browse files
add test for 208
1 parent b6cae20 commit 99b00ed

File tree

1 file changed

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

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
public class _208 {
44
public static class Solution1 {
5-
class TrieNode {
5+
public static class TrieNode {
66

77
char val;
88
boolean isWord;
@@ -17,7 +17,7 @@ public TrieNode(char c) {
1717
}
1818
}
1919

20-
public class Trie {
20+
public static class Trie {
2121
private TrieNode root;
2222

2323
public Trie() {

0 commit comments

Comments
 (0)