On branch master
Initial commit Changes to be committed: new file: 2022/day01/calorie_count.rs new file: 2022/day01/day01_algo.docx new file: 2022/day01/input.txt
This commit is contained in:
commit
a45b30e010
3 changed files with 2262 additions and 0 deletions
11
2022/day01/calorie_count.rs
Normal file
11
2022/day01/calorie_count.rs
Normal file
|
@ -0,0 +1,11 @@
|
|||
use std::io::prelude::*;
|
||||
use std::fs;
|
||||
use std::path::*;
|
||||
|
||||
fn main() {
|
||||
let mut _max_cals = 0;
|
||||
let path = Path::new("input.txt");
|
||||
let display = path.display();
|
||||
|
||||
let mut file
|
||||
}
|
BIN
2022/day01/day01_algo.docx
Normal file
BIN
2022/day01/day01_algo.docx
Normal file
Binary file not shown.
2251
2022/day01/input.txt
Normal file
2251
2022/day01/input.txt
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue