Compare commits
No commits in common. "513448bbbda2b51bdfa728eb8b5a6a9020027fe9" and "b8bacd133b0aa47cc984a719bdc67f66b7e13f45" have entirely different histories.
513448bbbd
...
b8bacd133b
@ -1,16 +0,0 @@
|
||||
[package]
|
||||
name = "day-01"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[[bin]]
|
||||
name = "part1"
|
||||
path = "src/part1.rs"
|
||||
[[bin]]
|
||||
name = "part2"
|
||||
path = "src/part2.rs"
|
||||
|
||||
[dependencies]
|
||||
regex = "1.10.2"
|
File diff suppressed because it is too large
Load Diff
@ -1,35 +0,0 @@
|
||||
fn main() {
|
||||
let input = include_str!("./input.txt");
|
||||
let output = process(input);
|
||||
println!("{}", output);
|
||||
}
|
||||
|
||||
fn process(input: &str) -> i32 {
|
||||
let lines: i32 = input
|
||||
.lines()
|
||||
.into_iter()
|
||||
.map(|line| {
|
||||
let line_vec = line
|
||||
.chars()
|
||||
.filter(|c| c.is_digit(10))
|
||||
.collect::<Vec<char>>();
|
||||
let first = line_vec.clone().into_iter().nth(0);
|
||||
let last = line_vec.clone().into_iter().nth_back(0);
|
||||
[first.unwrap(), last.unwrap()].into_iter().collect()
|
||||
})
|
||||
.collect::<Vec<String>>()
|
||||
.iter()
|
||||
.map(|x| x.parse::<i32>().unwrap())
|
||||
.sum();
|
||||
lines
|
||||
}
|
||||
|
||||
#[cfg(test)]
|
||||
mod tests {
|
||||
use super::*;
|
||||
#[test]
|
||||
fn test_logic() {
|
||||
let input = include_str!("./testinput.txt");
|
||||
assert_eq!(process(input), 142);
|
||||
}
|
||||
}
|
@ -1,53 +0,0 @@
|
||||
use regex::Regex;
|
||||
|
||||
fn main() {
|
||||
let input = include_str!("./input.txt");
|
||||
let output = process(input);
|
||||
println!("{}", output);
|
||||
}
|
||||
|
||||
fn process(input: &str) -> i32 {
|
||||
let lines: i32 = input
|
||||
.lines()
|
||||
.into_iter()
|
||||
.map(|x| replacer(x))
|
||||
.map(|line| {
|
||||
println!("{line}");
|
||||
let line_vec = line
|
||||
.chars()
|
||||
.filter(|c| c.is_digit(10))
|
||||
.collect::<Vec<char>>();
|
||||
let first = line_vec.clone().into_iter().nth(0);
|
||||
let last = line_vec.clone().into_iter().nth_back(0);
|
||||
[first.unwrap(), last.unwrap()].into_iter().collect()
|
||||
})
|
||||
.collect::<Vec<String>>()
|
||||
.iter()
|
||||
.map(|x| x.parse::<i32>().unwrap())
|
||||
.sum();
|
||||
lines
|
||||
}
|
||||
|
||||
fn replacer(x: &str) -> String {
|
||||
let re = Regex::new("(one|two|three|four|five|six|seven|eight|nine)");
|
||||
|
||||
x.replace("one", "1")
|
||||
.replace("two", "2")
|
||||
.replace("three", "3")
|
||||
.replace("four", "4")
|
||||
.replace("five", "5")
|
||||
.replace("six", "6")
|
||||
.replace("seven", "7")
|
||||
.replace("eight", "8")
|
||||
.replace("nine", "9")
|
||||
}
|
||||
|
||||
#[cfg(test)]
|
||||
mod tests {
|
||||
use super::*;
|
||||
#[test]
|
||||
fn test_logic() {
|
||||
let input = include_str!("./testinput2.txt");
|
||||
assert_eq!(process(input), 281);
|
||||
}
|
||||
}
|
@ -1,4 +0,0 @@
|
||||
1abc2
|
||||
pqr3stu8vwx
|
||||
a1b2c3d4e5f
|
||||
treb7uchet
|
@ -1,7 +0,0 @@
|
||||
two1nine
|
||||
eightwothree
|
||||
abcone2threexyz
|
||||
xtwone3four
|
||||
4nineeightseven2
|
||||
zoneight234
|
||||
7pqrstsixteen
|
Loading…
Reference in New Issue
Block a user