You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"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));