mirror of
https://github.com/Ajetski/advent-of-code.git
synced 2025-09-30 09:23:17 -09:00
Initial commit
This commit is contained in:
parent
3cd54521e2
commit
6683ced10e
16
src/day10.rs
Normal file
16
src/day10.rs
Normal file
@ -0,0 +1,16 @@
|
||||
type Stack = Vec<char>;
|
||||
|
||||
fn part_1_solution() {
|
||||
|
||||
}
|
||||
|
||||
#[cfg(test)]
|
||||
mod part1 {
|
||||
use super::*;
|
||||
|
||||
|
||||
#[test]
|
||||
fn run_sample() {
|
||||
part_1_solution()
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user