Sha256: e80f37f469fd11d4fcf67388d113c81b54ec782dc939cbeaeabef26f4929f99b
Contents?: true
Size: 267 Bytes
Versions: 13
Compression:
Stored size: 267 Bytes
Contents
/// Return the Hamming distance between the strings, /// or an error if the lengths are mismatched. pub fn hamming_distance(s1: &str, s2: &str) -> Result<u64, ()> { unimplemented!("What is the Hamming Distance between {:?} and {:?}", s1, s2); }
Version data entries
13 entries across 13 versions & 1 rubygems