1
0
mirror of https://gitlab.com/MisterBiggs/aoc-2023-rust.git synced 2025-06-15 14:36:50 +00:00

clippy stuff

This commit is contained in:
Anson Biggs 2023-12-03 23:44:00 -07:00
parent 2eb390c17b
commit e9a8cc657b
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@ use std::cmp;
use std::fs;
pub fn run() {
println!("Day 1:");
println!("Day 2:");
let input = fs::read_to_string("./inputs/day2.txt").expect("Could not read file");
println!("\tPart 1: {}", part1(&input));

View File

@ -4,7 +4,7 @@ use itertools::Itertools;
use regex::Regex;
pub fn run() {
println!("Day 1:");
println!("Day 3:");
let input = fs::read_to_string("./inputs/day3.txt").expect("Could not read file");
println!("\tPart 1: {}", part1(&input));