1
0
Fork 0
This commit is contained in:
Justin Parsell 2022-12-07 17:24:53 -05:00
parent f59de48e85
commit bc8d46dbc8
3 changed files with 2260 additions and 0 deletions

8
Day 1/Cargo.toml Normal file
View File

@ -0,0 +1,8 @@
[package]
name = "AdventP1"
version = "0.0.1"
edition = "2022"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

2244
Day 1/input.txt Normal file

File diff suppressed because it is too large Load Diff

8
Day 1/part1.rs Normal file
View File

@ -0,0 +1,8 @@
use std::fs::File;
use std::io::{BufRead, BufReader};
fn main(){
let input = "input.txt";
let file = File::open(input).unwrap();
}