Compare commits
2 commits
4cfa88e64a
...
23ecc63fcd
Author | SHA1 | Date | |
---|---|---|---|
23ecc63fcd | |||
ecdfe6eda6 |
3 changed files with 95 additions and 0 deletions
7
2024/day5/part2/Cargo.lock
generated
Normal file
7
2024/day5/part2/Cargo.lock
generated
Normal file
|
@ -0,0 +1,7 @@
|
|||
# This file is automatically @generated by Cargo.
|
||||
# It is not intended for manual editing.
|
||||
version = 3
|
||||
|
||||
[[package]]
|
||||
name = "part1"
|
||||
version = "0.1.0"
|
6
2024/day5/part2/Cargo.toml
Normal file
6
2024/day5/part2/Cargo.toml
Normal file
|
@ -0,0 +1,6 @@
|
|||
[package]
|
||||
name = "part1"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
[dependencies]
|
82
2024/day5/part2/src/main.rs
Normal file
82
2024/day5/part2/src/main.rs
Normal file
|
@ -0,0 +1,82 @@
|
|||
use std::fs;
|
||||
|
||||
fn main() {
|
||||
let mut lines: Vec<String> = Vec::new();
|
||||
// offset so the vec lines can actually start at 1 and not curse me
|
||||
lines.push("a".parse().unwrap());
|
||||
for i in fs::read_to_string("input.txt")
|
||||
.unwrap()
|
||||
.lines()
|
||||
.map(String::from) {
|
||||
lines.push(i);
|
||||
};
|
||||
let lineslen = lines.len();
|
||||
|
||||
|
||||
// get the line which is empty to split into the First and Second bit
|
||||
let mut sep = 0;
|
||||
for i in 1..lines.len() {
|
||||
if lines[i].trim() == "" {
|
||||
println!("the line empty is {}",i);
|
||||
sep = i;
|
||||
}
|
||||
};
|
||||
|
||||
let mut rul = Vec::new();
|
||||
for i in 1..sep {
|
||||
rul.push(lines[i].clone())
|
||||
};
|
||||
println!("rul {:?}",rul);
|
||||
|
||||
let mut seq = Vec::new();
|
||||
for i in sep+1..lineslen {
|
||||
seq.push(lines[i].clone());
|
||||
}
|
||||
println!("seq {:?}",seq);
|
||||
|
||||
|
||||
let mut notsofinalvec: Vec<Vec<i32>> = Vec::new();
|
||||
'l1: for seq1 in seq {
|
||||
let seqvec: Vec<i32> = seq1.split(",").map(|a| a.parse().unwrap()).collect();
|
||||
let mut allow = true;
|
||||
'swaptest: for rul2 in rul.clone() {
|
||||
|
||||
let rulez: Vec<String> = rul2.split("|").map(|a| a.to_string()).collect();
|
||||
let r1: i32 = rulez[0].clone().parse().unwrap();
|
||||
let r2: i32 = rulez[1].clone().parse().unwrap();
|
||||
|
||||
if seqvec.contains(&r1) && seqvec.contains(&r2) {
|
||||
if let Some(pos1) = seqvec.iter().position(|a| a == &r1) {
|
||||
if let Some(pos2) = seqvec.iter().position(|a| a == &r2) {
|
||||
if pos1 > pos2 {
|
||||
println!("allowed for {:?}, continued!!!!",seq1);
|
||||
allow = false;
|
||||
break 'swaptest;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
if !allow {
|
||||
notsofinalvec.push(seqvec)
|
||||
}
|
||||
}
|
||||
for i in ¬sofinalvec {
|
||||
println!("finalvec: {:?}",i)
|
||||
}
|
||||
|
||||
let mut total = 0;
|
||||
|
||||
println!("not so final vec {:?}",notsofinalvec);
|
||||
|
||||
|
||||
let truefinalvec = Vec::new();
|
||||
|
||||
fn test_pass {
|
||||
|
||||
}
|
||||
|
||||
for i in notsofinalvec {
|
||||
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue