algorithmz 1.3.0

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

#[test]
fn test_strong_password() {
    let result = strong_password(11,"Start!12345");
    assert_eq!(result, 0);
}