/damm-rs

An implementation of the Damm algorithm in Rust

Primary LanguageRust

damm-rs

"In error detection, the Damm algorithm is a check digit algorithm that detects all single-digit errors and all adjacent transposition errors." (Wikipedia)

example

use damm_rs::encode;

let number = "572";
assert_eq!(encode(number), Some(4));