implementation of diff
in Python. Displays difference between two files, as well as the lines where the changes occurred.
Utilizes Levenshtein distance to calculate
minimum number of operations (and type of operations) required to transform <file1>
to <file2>
.
python dif.py <file1> <file2>