fixed a thing i didint like fo solution of day 1
This commit is contained in:
parent
87893a52ff
commit
92b606a9ff
|
@ -28,19 +28,20 @@ fn parse(input: &str) -> Vec<i32> {
|
||||||
.collect::<Vec<_>>()
|
.collect::<Vec<_>>()
|
||||||
}
|
}
|
||||||
|
|
||||||
const NUMTEXT: [(&str, &str); 12] = [
|
const NUMTEXT: [(&str, &str); 13] = [
|
||||||
("four", "4"),
|
|
||||||
("seven", "7"),
|
|
||||||
("e", "ee"),
|
("e", "ee"),
|
||||||
("nine", "9"),
|
|
||||||
("five", "5"),
|
|
||||||
("t", "tt"),
|
("t", "tt"),
|
||||||
("three", "3"),
|
|
||||||
("eight", "8"),
|
|
||||||
("o", "oo"),
|
("o", "oo"),
|
||||||
("one", "1"),
|
("n", "nn"),
|
||||||
|
("onne", "1"),
|
||||||
("two", "2"),
|
("two", "2"),
|
||||||
|
("three", "3"),
|
||||||
|
("foour", "4"),
|
||||||
|
("five", "5"),
|
||||||
("six", "6"),
|
("six", "6"),
|
||||||
|
("seeveen", "7"),
|
||||||
|
("eight", "8"),
|
||||||
|
("ninne", "9"),
|
||||||
];
|
];
|
||||||
fn text2digits(input: &str) -> String {
|
fn text2digits(input: &str) -> String {
|
||||||
input
|
input
|
||||||
|
|
Loading…
Reference in New Issue