Files
AdventOfCode/y2015/src/bin/d11.rs
2024-10-29 14:36:36 +01:00

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")));
}