algorithmz 0.9.7

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

#[test]
fn test_license_number() {
    let result = license_number("a-b-c-d-e-f",3);
    assert_eq!(result, "abc-def".to_string());
}