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 9c81c79 commit d8ad800Copy full SHA for d8ad800
src/main/java/g0201_0300/s0211_design_add_and_search_words_data_structure/WordDictionary.java
@@ -3,10 +3,11 @@
3
// #Medium #String #Depth_First_Search #Design #Trie
4
// #2023_01_06_Time_308_ms_(99.46%)_Space_284.7_MB_(13.25%)
5
6
-@SuppressWarnings("java:S1186")
7
public class WordDictionary {
8
9
- public WordDictionary() {}
+ public WordDictionary() {
+ // empty constructor
10
+ }
11
12
private static class Node {
13
Node[] kids = new Node[26];
0 commit comments