algorithmz 1.2.9

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

#[test]
fn test_add_binary() {
    let result = add_binary("11","1");
    assert_eq!(result, "100".to_string());
}