Add Rust solutions for days 1-3

Signed-off-by: Alek Ratzloff <alekr@jsausa.com>
This commit is contained in:
Alek Ratzloff
2019-12-04 16:22:10 -05:00
parent 1b05cae562
commit f3c80f2fd2
4 changed files with 500 additions and 0 deletions

11
day04/Day04.rs Normal file
View File

@@ -0,0 +1,11 @@
//use std::io::{self, Read};
//type Result<T> = std::result::Result<T, Box<dyn std::error::Error>>;
fn main() {
part1(246515, 739105);
}
fn part1(lower: usize, upper: usize) {
}