cargo fmt

This commit is contained in:
Anthony Cicchetti 2021-12-02 16:43:25 -05:00
parent bcb7c93806
commit e01441587c
3 changed files with 38 additions and 24 deletions

View file

@ -3,10 +3,10 @@ use itertools::Itertools;
fn input_parse(input: &str) -> Vec<u32> { fn input_parse(input: &str) -> Vec<u32> {
input input
.split_whitespace() .split_whitespace()
.map(|t| .map(|t| {
t.parse::<u32>() t.parse::<u32>()
.expect(&format!("Could not parse {} into u32", &t)) .unwrap_or_else(|t| panic!("Could not parse {} into u32", &t))
) })
.collect::<Vec<_>>() .collect::<Vec<_>>()
} }
@ -56,9 +56,16 @@ fn input_parse(input: &str) -> Vec<u32> {
pub fn part1(input: &str) -> u32 { pub fn part1(input: &str) -> u32 {
let input = input_parse(input); let input = input_parse(input);
input.iter() input.iter().tuple_windows::<(_, _)>().fold(
.tuple_windows::<(_,_)>() 0,
.fold(0, |acc, inp| { if inp.0 < inp.1 { acc + 1 } else { acc }}) |acc, inp| {
if inp.0 < inp.1 {
acc + 1
} else {
acc
}
},
)
} }
/// ///
@ -102,7 +109,8 @@ pub fn part1(input: &str) -> u32 {
/// ///
pub fn part2(input: &str) -> u32 { pub fn part2(input: &str) -> u32 {
let input = input_parse(input); let input = input_parse(input);
input.iter() input
.iter()
.tuple_windows::<(_, _, _)>() .tuple_windows::<(_, _, _)>()
.map(|(a, b, c)| a + b + c) .map(|(a, b, c)| a + b + c)
.tuple_windows::<(_, _)>() .tuple_windows::<(_, _)>()

View file

@ -41,11 +41,11 @@ impl SubmarinePart1 {
depth: 0, depth: 0,
} }
} }
fn move_in_direction(&mut self, direction: &Direction) -> () { fn move_in_direction(&mut self, direction: &Direction) {
match direction { match direction {
Direction::Forward(x) => { Direction::Forward(x) => {
self.horizontal += x; self.horizontal += x;
}, }
Direction::Up(y) => self.depth -= y, Direction::Up(y) => self.depth -= y,
Direction::Down(y) => self.depth += y, Direction::Down(y) => self.depth += y,
} }
@ -55,7 +55,7 @@ impl SubmarinePart1 {
pub(crate) struct SubmarinePart2 { pub(crate) struct SubmarinePart2 {
horizontal: usize, horizontal: usize,
depth: usize, depth: usize,
aim: usize aim: usize,
} }
impl SubmarinePart2 { impl SubmarinePart2 {
@ -66,12 +66,12 @@ impl SubmarinePart2 {
aim: 0, aim: 0,
} }
} }
fn move_in_direction(&mut self, direction: &Direction) -> () { fn move_in_direction(&mut self, direction: &Direction) {
match direction { match direction {
Direction::Forward(x) => { Direction::Forward(x) => {
self.horizontal += x; self.horizontal += x;
self.depth += self.aim * x self.depth += self.aim * x
}, }
Direction::Up(y) => self.aim -= y, Direction::Up(y) => self.aim -= y,
Direction::Down(y) => self.aim += y, Direction::Down(y) => self.aim += y,
} }
@ -122,7 +122,9 @@ pub(crate) fn input_parse(input: &str) -> Vec<Direction> {
pub fn part1(input: &str) -> usize { pub fn part1(input: &str) -> usize {
let directions = input_parse(input); let directions = input_parse(input);
let mut p = SubmarinePart1::new(); let mut p = SubmarinePart1::new();
directions.iter().for_each(|direction| p.move_in_direction(direction)); directions
.iter()
.for_each(|direction| p.move_in_direction(direction));
p.horizontal * p.depth p.horizontal * p.depth
} }
@ -159,6 +161,8 @@ pub fn part1(input: &str) -> usize {
pub fn part2(input: &str) -> usize { pub fn part2(input: &str) -> usize {
let directions = input_parse(input); let directions = input_parse(input);
let mut p = SubmarinePart2::new(); let mut p = SubmarinePart2::new();
directions.iter().for_each(|direction| p.move_in_direction(direction)); directions
.iter()
.for_each(|direction| p.move_in_direction(direction));
p.depth * p.horizontal p.depth * p.horizontal
} }

View file

@ -1,9 +1,9 @@
extern crate clap; extern crate clap;
use clap::{arg_enum, clap_app, value_t};
use std::error::Error; use std::error::Error;
use std::fs::File; use std::fs::File;
use std::io::{BufReader, Read}; use std::io::{BufReader, Read};
use clap::{arg_enum, clap_app, value_t};
arg_enum! { arg_enum! {
#[derive(Debug)] #[derive(Debug)]
@ -40,7 +40,9 @@ fn main() -> Result<(), Box<dyn Error>> {
(DaysImplemented::Day1, 2) => println!("{}", day_01::part2(&input)), (DaysImplemented::Day1, 2) => println!("{}", day_01::part2(&input)),
(DaysImplemented::Day2, 1) => println!("{}", day_02::part1(&input)), (DaysImplemented::Day2, 1) => println!("{}", day_02::part1(&input)),
(DaysImplemented::Day2, 2) => println!("{}", day_02::part2(&input)), (DaysImplemented::Day2, 2) => println!("{}", day_02::part2(&input)),
_ => {unimplemented!()} _ => {
unimplemented!()
}
}; };
Ok(()) Ok(())
@ -50,6 +52,6 @@ fn file_exists(val: String) -> Result<(), String> {
if std::fs::metadata(&val).is_ok() { if std::fs::metadata(&val).is_ok() {
Ok(()) Ok(())
} else { } else {
Err(String::from(format!("File at {} doesn't exist", &val))) Err(format!("File at {} doesn't exist", &val))
} }
} }