algorithmz 1.3.1

This is the corresponding implemenation of the python module of the same name.
Documentation
1
2
3
4
5
6
7
use algorithmz::string::min_distance;

#[test]
fn test_min_distance() {
    let result = min_distance("lion","ion");
    assert_eq!(result, 1);
}