fixed base 55

This commit is contained in:
Erin 2022-02-13 00:55:51 +01:00 committed by ondra05
parent 8c867c7899
commit 5d29c8cf87

View file

@ -1,4 +1,4 @@
pub fn char2num(character: char) -> i32 {
pub fn char2num(character: char) -> isize {
match character {
'Z' => -26,
'Y' => -25,
@ -66,7 +66,7 @@ mod tests {
use super::*;
#[test]
fn str_to_base55() {
let chrs: Vec<i32> = "AbleScript".chars().map(char2num).collect();
let chrs: Vec<isize> = "AbleScript".chars().map(char2num).collect();
assert_eq!(chrs, &[-1, 2, 12, 5, -19, 3, 18, 9, 16, 20]);
}
}