Day 1
This commit is contained in:
parent
f59de48e85
commit
bc8d46dbc8
8
Day 1/Cargo.toml
Normal file
8
Day 1/Cargo.toml
Normal 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
2244
Day 1/input.txt
Normal file
File diff suppressed because it is too large
Load Diff
8
Day 1/part1.rs
Normal file
8
Day 1/part1.rs
Normal 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();
|
||||||
|
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user