FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
interviews/leetcode/string/OneEditDistance.java at master · codingOnGithub/interviews · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
codingOnGithub
/
interviews
Public
forked from
kdn251/interviews
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
interviews
/
leetcode
/
string
/
OneEditDistance.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
26 lines (23 loc) · 1.3 KB
Breadcrumbs
interviews
/
leetcode
/
string
/
OneEditDistance.java
Copy path
File metadata and controls
26 lines (23 loc) · 1.3 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
// Given two strings S and T, determine if they are both one edit distance apart.
public
class
OneEditDistance
{
public
boolean
isOneEditDistance
(
String
s
,
String
t
) {
//iterate through the length of the smaller string
for
(
int
i
=
0
;
i
<
Math
.
min
(
s
.
length
(),
t
.
length
());
i
++) {
//if the current characters of the two strings are not equal
if
(
s
.
charAt
(
i
) !=
t
.
charAt
(
i
)) {
//return true if the remainder of the two strings are equal, false otherwise
if
(
s
.
length
() ==
t
.
length
()) {
return
s
.
substring
(
i
+
1
).
equals
(
t
.
substring
(
i
+
1
));
}
else
if
(
s
.
length
() <
t
.
length
()) {
//return true if the strings would be the same if you deleted a character from string t
return
s
.
substring
(
i
).
equals
(
t
.
substring
(
i
+
1
));
}
else
{
//return true if the strings would be the same if you deleted a character from string s
return
t
.
substring
(
i
).
equals
(
s
.
substring
(
i
+
1
));
}
}
}
//if all characters match for the length of the two strings check if the two strings' lengths do not differ by more than 1
return
Math
.
abs
(
s
.
length
() -
t
.
length
()) ==
1
;
}
}
Back
|
FazBrowse Home
|
New Git URL