algorithmz 0.8.9

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

#[test]
fn test_alphabet_board_path() {
    let result = alphabet_board_path("dani");
    assert_eq!(result,"RRR!!DDRRR!DRRR!".to_string());
}