Initial commit

This commit is contained in:
Adam Jeniski 2022-01-06 16:33:40 -05:00
parent 3cd54521e2
commit 6683ced10e

16
src/day10.rs Normal file
View 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()
}
}