Codebrain62816's Posts
Nairaland Forum › Codebrain62816's Profile › Codebrain62816's Posts
1 (of 1 pages)
May God save nigeria |
def hammingDistance(st1,st2): n = len(st1) counter = 0 for i in range(n): if st1[i] != st2[i]: counter += 1 print counter hammingDistance("helloworld","worldhello" ![]()
|
1 (of 1 pages)
