forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_676.java
58 lines (50 loc) · 1.63 KB
/
_676.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
package com.fishercoder.solutions;
import java.util.HashSet;
import java.util.Set;
public class _676 {
public static class Solution1 {
public static class MagicDictionary {
Set<String> wordSet;
/**
* Initialize your data structure here.
*/
public MagicDictionary() {
wordSet = new HashSet<>();
}
/**
* Build a dictionary through a list of words
*/
public void buildDict(String[] dict) {
for (String word : dict) {
wordSet.add(word);
}
}
/**
* Returns if there is any word in the trie that equals to the given word after modifying exactly one character
*/
public boolean search(String word) {
for (String candidate : wordSet) {
if (modifyOneChar(word, candidate)) {
return true;
}
}
return false;
}
private boolean modifyOneChar(String word, String candidate) {
if (word.length() != candidate.length()) {
return false;
}
int diff = 0;
for (int i = 0; i < word.length(); i++) {
if (word.charAt(i) != candidate.charAt(i)) {
diff++;
}
if (diff > 1) {
return false;
}
}
return diff == 1;
}
}
}
}