forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_161.java
42 lines (39 loc) · 1.44 KB
/
_161.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
package com.fishercoder.solutions;
public class _161 {
public static class Solution1 {
public boolean isOneEditDistance(String s, String t) {
char[] schar = s.toCharArray();
char[] tchar = t.toCharArray();
if (Math.abs(s.length() - t.length()) == 1) {
char[] longer = (s.length() > t.length()) ? schar : tchar;
char[] shorter = (longer == schar) ? tchar : schar;
int diffCnt = 0;
int i = 0;
int j = 0;
for (; i < shorter.length && j < longer.length; ) {
if (longer[j] != shorter[i]) {
diffCnt++;
j++;
} else {
i++;
j++;
}
}
return diffCnt == 1 || diffCnt == 0;
//it could be the last char of the longer is the different one, in that case, diffCnt remains to be zero
} else if (s.length() == t.length()) {
int diffCnt = 0;
for (int i = 0; i < s.length(); i++) {
if (schar[i] != tchar[i]) {
diffCnt++;
}
if (diffCnt > 1) {
return false;
}
}
return diffCnt == 1;
}
return false;
}
}
}