[Rust/2021] Add year bin
This commit is contained in:
parent
373e08f3f4
commit
3381043291
3 changed files with 32 additions and 2 deletions
|
@ -1,8 +1,6 @@
|
|||
#![feature(test)]
|
||||
#![feature(binary_heap_into_iter_sorted)]
|
||||
|
||||
extern crate test;
|
||||
|
||||
use std::collections::{BinaryHeap, VecDeque};
|
||||
|
||||
use rustc_hash::FxHashSet;
|
||||
|
|
29
Rust/2021/main.rs
Normal file
29
Rust/2021/main.rs
Normal file
|
@ -0,0 +1,29 @@
|
|||
#![feature(binary_heap_into_iter_sorted, extract_if)]
|
||||
|
||||
aoc::year! {
|
||||
"01.rs",
|
||||
"02.rs",
|
||||
"03.rs",
|
||||
"04.rs",
|
||||
"05.rs",
|
||||
"06.rs",
|
||||
"07.rs",
|
||||
"08.rs",
|
||||
"09.rs",
|
||||
"10.rs",
|
||||
"11.rs",
|
||||
"12.rs",
|
||||
"13.rs",
|
||||
"14.rs",
|
||||
"15.rs",
|
||||
"16.rs",
|
||||
"17.rs",
|
||||
"18.rs",
|
||||
"19.rs",
|
||||
"20.rs",
|
||||
"21.rs",
|
||||
"22.rs",
|
||||
"23.rs",
|
||||
"24.rs",
|
||||
"25.rs",
|
||||
}
|
|
@ -73,6 +73,9 @@ path = "2020/10.rs"
|
|||
|
||||
# 2021
|
||||
[[bin]]
|
||||
name = "2021"
|
||||
path = "2021/main.rs"
|
||||
[[bin]]
|
||||
name = "2021_01"
|
||||
path = "2021/01.rs"
|
||||
[[bin]]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue