Skip to content

Commit b50aad3

Browse files
refactor 245
1 parent 960e2dd commit b50aad3

File tree

1 file changed

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

1 file changed

+26
-25
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
package com.fishercoder.solutions;
22

33
/**
4+
* 245. Shortest Word Distance III
5+
*
46
* This is a follow up of Shortest Word Distance. The only difference is now word1 could be the same as word2.
5-
6-
Given a list of words and two words word1 and word2, return the shortest distance between these two words in the list.
7-
8-
word1 and word2 may be the same and they represent two individual words in the list.
7+
* Given a list of words and two words word1 and word2, return the shortest distance between these two words in the list.
8+
* word1 and word2 may be the same and they represent two individual words in the list.
99
1010
For example,
1111
Assume that words = ["practice", "makes", "perfect", "coding", "makes"].
@@ -18,31 +18,32 @@
1818
*/
1919
public class _245 {
2020

21-
public int shortestWordDistance(String[] words, String word1, String word2) {
22-
int p1 = -1;
23-
int p2 = -1;
24-
int min = Integer.MAX_VALUE;
25-
for (int i = 0; i < words.length; i++) {
26-
if (words[i].equals(word1)) {
27-
if (word1.equals(word2)) {
28-
if (p1 != -1 && i - p1 < min) {
29-
min = i - p1;
21+
public static class Solution1 {
22+
public int shortestWordDistance(String[] words, String word1, String word2) {
23+
int p1 = -1;
24+
int p2 = -1;
25+
int min = Integer.MAX_VALUE;
26+
for (int i = 0; i < words.length; i++) {
27+
if (words[i].equals(word1)) {
28+
if (word1.equals(word2)) {
29+
if (p1 != -1 && i - p1 < min) {
30+
min = i - p1;
31+
}
32+
p1 = i;
33+
} else {
34+
p1 = i;
35+
if (p2 != -1 && p1 - p2 < min) {
36+
min = p1 - p2;
37+
}
3038
}
31-
p1 = i;
32-
} else {
33-
p1 = i;
34-
if (p2 != -1 && p1 - p2 < min) {
35-
min = p1 - p2;
39+
} else if (words[i].equals(word2)) {
40+
p2 = i;
41+
if (p1 != -1 && p2 - p1 < min) {
42+
min = p2 - p1;
3643
}
3744
}
38-
} else if (words[i].equals(word2)) {
39-
p2 = i;
40-
if (p1 != -1 && p2 - p1 < min) {
41-
min = p2 - p1;
42-
}
4345
}
46+
return min;
4447
}
45-
return min;
4648
}
47-
4849
}

0 commit comments

Comments
 (0)