fix cargo warnings.

This commit is contained in:
Gabe Venberg 2023-10-31 17:37:40 -05:00
parent 4c11c4df3e
commit 44c6da936e
10 changed files with 17 additions and 20 deletions

View file

@ -1,3 +1,4 @@
#![allow(unused)]
use crate::utilities::*;
pub fn part1() -> usize {

View file

@ -1,3 +1,4 @@
#![allow(unused)]
use crate::utilities::*;
pub fn part2() -> usize {

View file

@ -1,10 +1,11 @@
#![allow(unused)]
mod part1;
mod part2;
mod utilities;
fn main() {
let _input = include_str!("./input.txt");
let _structured_input = utilities::parse(_input);
let input = include_str!("./input.txt");
let structured_input = utilities::parse(input);
println!("Part One");
println!("Result: {}", part1::part1());

View file

@ -1,3 +1,4 @@
#![allow(unused)]
pub fn parse(input: &str) -> usize {
unimplemented!()
}