-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Copy pathHammingDistance.java
35 lines (27 loc) · 1008 Bytes
/
HammingDistance.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 ibnahmad
*/
public class HammingDistance {
public static void main(String args[]) throws Exception{
System.out.println(compareThem("1011101", "1001001")); // Output 2
System.out.println(compareThem("Welcome", "welcome")); // Output 0
System.out.println(compareThem("hacking", "cryptography")); // Output "String are not of equal length."
}
/**
*
* @param strOne
* @param strTwo
* @return
* @throws Exception
*/
public static int compareThem(String strOne, String strTwo) throws Exception {
int distance = 0;
if(strOne.length() != strTwo.length()) throw new Exception("String are not of the same length");
if(strOne.equalsIgnoreCase(strTwo)) return distance;
for(int i = 0; i < strOne.length(); i ++ ) {
if(strOne.charAt(i) != strTwo.charAt(i)) distance++;
}
return distance;
}
}