Skip to content

Commit

Permalink
style: apply cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
dxnter committed Dec 1, 2023
1 parent 8cf237e commit d035ae3
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/bin/01.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
advent_of_code::solution!(1);

pub fn part_one(_input: &str) -> Option<u32> { None }
pub fn part_one(_input: &str) -> Option<u32> {
None
}

pub fn part_two(_input: &str) -> Option<u32> { None }
pub fn part_two(_input: &str) -> Option<u32> {
None
}

#[cfg(test)]
mod tests {
Expand Down

0 comments on commit d035ae3

Please sign in to comment.