2025-12-16 17:38:53 +00:00
|
|
|
pub struct Puzzle<Input, const N: usize> {
|
2025-12-09 19:17:25 +00:00
|
|
|
pub number: u32,
|
2026-01-12 22:27:41 +00:00
|
|
|
pub parser: fn(bool, &str) -> Input,
|
2025-12-16 17:38:53 +00:00
|
|
|
pub parts: [fn(&Input) -> String; N],
|
2025-12-09 19:17:25 +00:00
|
|
|
}
|