-
Notifications
You must be signed in to change notification settings - Fork 153
/
Copy pathEdit.java
35 lines (33 loc) · 978 Bytes
/
Edit.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
/**
* @author SPREEHA DUTTA
* @date 28/12/18
*/
import java.util.*;
public class Edit {
public static void main(String []args)
{
Scanner sc=new Scanner(System.in);
String s1,s2;int l,c=0;char b;int i;
System.out.println("Enter two strings ");
s1=sc.next();
s2=sc.next();
if(Math.abs(s1.length()-s2.length())<=1)
{
if(s1.length()<s2.length())
l=s1.length();
else
l=s2.length();
for(i=0;i<l;i++)
{
if(s1.charAt(i)==s2.charAt(i))
c++;
}
if((c==l)||((c+1)==l && (s1.length()==s2.length())))
System.out.println(s1+" and "+s2+" are one edit away");
else
System.out.println(s1+" and "+s2+" are not one edit away ");
}
else
System.out.println(s1+" and "+s2+" are not one edit away ");
}
}