mirror of
https://gitlab.com/MisterBiggs/aoc2021.git
synced 2025-08-03 11:51:21 +00:00
beginning of days 4 and 5
This commit is contained in:
8
day4/rust/Cargo.toml
Normal file
8
day4/rust/Cargo.toml
Normal file
@@ -0,0 +1,8 @@
|
||||
[package]
|
||||
name = "rust"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
16
day4/rust/src/main.rs
Normal file
16
day4/rust/src/main.rs
Normal file
@@ -0,0 +1,16 @@
|
||||
use std::fs;
|
||||
|
||||
fn main() {
|
||||
let input = fs::read_to_string("../input.txt").expect("Could not read file");
|
||||
|
||||
let numbers: Vec<&str> = input.split('\n').next().unwrap().split(',').collect();
|
||||
for i in numbers.iter() {
|
||||
println!("{}", i);
|
||||
}
|
||||
|
||||
let boards: Vec<&str> = input.split("\n\n").collect();
|
||||
println!("{}", boards.len());
|
||||
for i in boards.iter() {
|
||||
println!("{:?}", i);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user