Skip to content

Commit 9bd4891

Browse files
edit 244
1 parent 974a3c8 commit 9bd4891

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ Your ideas/fixes/algorithms are more than welcome!
342342
|247|[Strobogrammatic Number II](https://leetcode.com/problems/strobogrammatic-number-ii/)|[Solution](../master/src/main/java/com/fishercoder/solutions/StrobogrammaticNumberII.java) | O(n^2) | O(n) | Medium | Recursion
343343
|246|[Strobogrammatic Number](https://leetcode.com/problems/strobogrammatic-number/)|[Solution](../master/src/main/java/com/fishercoder/solutions/StrobogrammaticNumber.java) | O(n) | O(1) | Easy
344344
|245|[Shortest Word Distance III](https://leetcode.com/problems/shortest-word-distance-iii/)|[Solution](../master/src/main/java/com/fishercoder/solutions/ShortestWordDistanceIII.java) | O(n) | O(1) | Medium |
345-
|244|[Shortest Word Distance II](https://leetcode.com/problems/shortest-word-distance-ii/)|[Solution](../master/src/main/java/com/fishercoder/solutions/ShortestWordDistanceII.java) | O(n) | O(n) | Medium | HashMap
345+
|244|[Shortest Word Distance II](https://leetcode.com/problems/shortest-word-distance-ii/)|[Solution](../master/src/main/java/com/fishercoder/solutions/_244.java) | O(n) | O(n) | Medium | HashMap
346346
|243|[Shortest Word Distance](https://leetcode.com/problems/shortest-word-distance/)|[Solution](../master/src/main/java/com/fishercoder/solutions/_243.java) | O(n) | O(1) | Easy
347347
|242|[Valid Anagram](https://leetcode.com/problems/valid-anagram/)|[Solution](../master/src/main/java/com/fishercoder/solutions/_242.java) | O(n) | O(1) | Easy
348348
|241|[Different Ways to Add Parentheses](https://leetcode.com/problems/different-ways-to-add-parentheses/)|[Solution](../master/src/main/java/com/fishercoder/solutions/_241.java) | O(O(n * 4^n / n^(3/2))) | O(n * 4^n / n^(3/2)) | Medium | Divide and Conquer

src/main/java/com/fishercoder/solutions/ShortestWordDistanceII.java renamed to src/main/java/com/fishercoder/solutions/_244.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@
1919
Note:
2020
You may assume that word1 does not equal to word2, and word1 and word2 are both in the list.
2121
*/
22-
public class ShortestWordDistanceII {
22+
public class _244 {
2323

2424
private Map<String, List<Integer>> map;
25-
public ShortestWordDistanceII(String[] words) {
25+
public _244(String[] words) {
2626
map = new HashMap<String, List<Integer>>();
2727
for(int i = 0; i < words.length; i++) {
2828
String w = words[i];

0 commit comments

Comments
 (0)