making 2023 a generic aoc repo

This commit is contained in:
Dylan Thies
2023-12-04 19:40:31 -05:00
parent 09f1da1295
commit 51cf3fa8e7
28 changed files with 2 additions and 2 deletions

View File

View File

View File

@@ -1,6 +1,6 @@
#![warn(clippy::all, clippy::pedantic)]
pub fn part1(_input: &str) -> String {
#[must_use] pub fn part1(_input: &str) -> String {
"Not Finished".to_string()
}

View File

@@ -1,6 +1,6 @@
#![warn(clippy::all, clippy::pedantic)]
pub fn part2(_input: &str) -> String {
#[must_use] pub fn part2(_input: &str) -> String {
"Not Finished".to_string()
}