feat(scaffold): change default return type to Option<usize>

This commit is contained in:
Matej Janezic 2024-12-09 20:10:30 +01:00
parent 0000012098
commit 0000013050
Signed by: janezicmatej
GPG Key ID: 4298E230ED37B2C0
1 changed files with 2 additions and 2 deletions

View File

@ -8,11 +8,11 @@ use std::{
process, process,
}; };
const MODULE_TEMPLATE: &str = r#"pub fn part_one(input: &str) -> Option<u32> { const MODULE_TEMPLATE: &str = r#"pub fn part_one(input: &str) -> Option<usize> {
None None
} }
pub fn part_two(input: &str) -> Option<u32> { pub fn part_two(input: &str) -> Option<usize> {
None None
} }