gitbutler/gitbutler-changeset/fixture/code1.txt
2024-02-29 13:27:19 +01:00

9 lines
326 B
Plaintext

for i in 0..hashes.len() {
for j in i+1..hashes.len() {
- let (file, hash) = &hashes[i];
+ let (file1, hash1) = &hashes[i];
let (file2, hash2) = &hashes[j];
println!("Hamming distance between {} and {}: {}", file1, file2, hash1.distance(hash2));
}
}