mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
814b54b0e9
between two objects.
10 lines
382 B
Plaintext
10 lines
382 B
Plaintext
Algorithm::MDiff is another form of comparing two different perl objects.
|
|
M-difference works as follows: Two strings are m-different if at least m
|
|
of the characters in the string differ; that is, if m=3, then there are at
|
|
least 3 indices (i, j, k) such that str1[i] != str2[i], str1[j] != str2[j],
|
|
and str1[k] != str2[k].
|
|
|
|
Author: Jettero Heller <jettero@voltar.org>
|
|
|
|
--will
|