~linuxgoose/linguistics-robin

ref: 037a318338f0682f73578a6436a56fc79de18e37 linguistics-robin/linguistics_robin/distance_metrics/hamming.py -rw-r--r-- 524 bytes
037a3183 — Jordan Robinson Merge pull request #17 from linuxgoose/16-fix-pip-install-in-readme 8 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
from ..exceptions import WrongLengthException


def hamming_distance(word1, word2):
    """
    Computes the Hamming distance.

    [Reference]: https://en.wikipedia.org/wiki/Hamming_distance
    [Article]: Hamming, Richard W. (1950), "Error detecting and error correcting codes",
        Bell System Technical Journal 29 (2): 147–160
    """
    from operator import ne
    if len(word1) != len(word2):
        raise WrongLengthException('The words need to be of the same length!')

    return sum(map(ne, word1, word2))