We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0c582ce commit 4b35c2dCopy full SHA for 4b35c2d
src/main/java/com/fishercoder/solutions/_966.java
@@ -17,7 +17,6 @@ public String[] spellchecker(String[] wordlist, String[] queries) {
17
if (!caseMap.containsKey(word.toLowerCase())) {
18
caseMap.put(word.toLowerCase(), word);
19
}
20
-
21
set.add(word);
22
23
@@ -43,7 +42,6 @@ public String[] spellchecker(String[] wordlist, String[] queries) {
43
42
ans[i] = "";
44
45
46
47
return ans;
48
49
@@ -55,7 +53,6 @@ private String makeGenericVowel(String s) {
55
53
ch[i] = '#';
56
54
57
58
59
return String.valueOf(ch);
60
61
0 commit comments