Implement the isOneEditAway(String first, String second) method that returns true if it is possible
to edit/add/delete one character in one of the strings to get the other string.
The passed string includes only ASCII characters.
Ignore the case of the characters.
One change
- 20
Locked
Comments (1)
- Popular
- New
- Old
You must be signed in to leave a comment
AnnemiekFF
19 May 2020, 07:16
Just a hint...contrary to the conditions....if the strings are identical it should be true.
0