Compare commits

...

2 Commits

Author SHA1 Message Date
YK
c046c78f08 add feature flag 2024-11-20 09:31:14 +03:00
YK
d13f519c9e add prelude type alias for static str 2024-11-20 09:31:05 +03:00
2 changed files with 3 additions and 0 deletions

View File

@ -1,5 +1,6 @@
#![feature(let_chains)] #![feature(let_chains)]
#![feature(decl_macro)] #![feature(decl_macro)]
#![feature(iter_array_chunks)]
pub mod days; pub mod days;
pub mod utils; pub mod utils;

View File

@ -5,3 +5,5 @@ pub use std::{
collections::{ HashMap as M, HashSet as S }, collections::{ HashMap as M, HashSet as S },
cmp::Ordering as Or, cmp::Ordering as Or,
}; };
pub type SS = &'static str;