feat: remove christmas tree emojies

This commit is contained in:
2023-11-23 00:03:21 +01:00
parent 000003708f
commit 0000038084
4 changed files with 7 additions and 10 deletions

View File

@@ -36,9 +36,9 @@ macro_rules! solution {
fn main() {
let input = aoc::read_file("inputs", 1);
println!("🎄 {}Part {}{} 🎄", ANSI_BOLD, 1, ANSI_RESET);
println!("{}Part {}{}", ANSI_BOLD, 1, ANSI_RESET);
print_result(part_one, &input);
println!("🎄 {}Part {}{} 🎄", ANSI_BOLD, 1, ANSI_RESET);
println!("{}Part {}{}", ANSI_BOLD, 1, ANSI_RESET);
print_result(part_two, &input);
}
};