2024-12-01 17:36:25 +00:00
|
|
|
#![feature(let_chains)]
|
2024-12-02 05:44:56 +00:00
|
|
|
#![feature(array_windows)]
|
2024-12-01 17:36:25 +00:00
|
|
|
#![feature(decl_macro)]
|
|
|
|
|
#![feature(iter_array_chunks)]
|
2024-12-02 14:08:41 +00:00
|
|
|
#![feature(binary_heap_into_iter_sorted)]
|
2024-12-03 19:58:15 +00:00
|
|
|
#![feature(type_alias_impl_trait)]
|
2024-12-01 17:36:25 +00:00
|
|
|
|
|
|
|
|
pub mod days;
|
|
|
|
|
pub mod utils;
|
|
|
|
|
pub mod prelude;
|