15 lines
220 B
Rust
15 lines
220 B
Rust
use y2015::days::d11;
|
|
|
|
fn main() {
|
|
part1();
|
|
part2();
|
|
}
|
|
|
|
fn part1() {
|
|
println!("{}", d11::process_part1("hepxcrrq"));
|
|
}
|
|
|
|
fn part2() {
|
|
println!("{}", d11::process_part1(&d11::process_part1("hepxcrrq")));
|
|
}
|