Run cargo fmt

This commit is contained in:
LordMathis 2023-12-18 23:42:56 +01:00
parent fe14fed68c
commit 6bfae0fe45
16 changed files with 16 additions and 31 deletions

View File

@ -3,7 +3,6 @@ use std::fs::File;
use std::io::{self, BufRead};
use std::path::Path;
pub fn read_lines<P>(filename: P) -> io::Result<io::Lines<io::BufReader<File>>>
where
P: AsRef<Path>,

View File

@ -16,7 +16,6 @@ pub fn part_two() -> String {
}
}
fn parse_line(s: &str) -> u32 {
const RADIX: u32 = 10;

View File

@ -22,8 +22,6 @@ pub fn part_two() -> String {
}
}
fn process_line(s: &str) -> u32 {
let v: Vec<&str> = s.split(':').collect();

View File

@ -1,6 +1,5 @@
pub mod part_one;
use crate::utils::solution::Solution;
pub struct Day3Solution;

View File

@ -19,7 +19,6 @@ pub fn part_one() -> String {
}
}
fn create_matrix(lines: io::Lines<io::BufReader<File>>) -> Vec<Vec<Engine>> {
let mut matrix: Vec<Vec<Engine>> = Vec::new();

View File

@ -1,6 +1,5 @@
pub mod part_one;
use crate::utils::solution::Solution;
pub struct Day4Solution;

View File

@ -17,7 +17,6 @@ pub fn part_one() -> String {
}
fn process_line(s: &str) -> u32 {
let mut winning_numbers = HashSet::new();
let mut res = 0;
@ -45,5 +44,3 @@ fn process_line(s: &str) -> u32 {
return res;
}

View File

@ -1,7 +1,6 @@
pub mod part_one;
pub mod part_two;
use crate::utils::solution::Solution;
pub struct Day6Solution;

View File

@ -40,5 +40,3 @@ fn process_race_result(time: u32, distance: u32) -> u32 {
return win_count;
}

View File

@ -37,5 +37,3 @@ fn process_race_result(time: u64, distance: u64) -> u64 {
return win_count;
}