Skip to content

Commit

Permalink
Restructure imports
Browse files Browse the repository at this point in the history
  • Loading branch information
fornwall committed Dec 1, 2024
1 parent cb0593e commit 02aa2fd
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions crates/core/src/year2024/day01.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
use crate::{
common::array_stack::ArrayStack,
input::{on_error, Input},
};
use crate::common::array_stack::ArrayStack;
use crate::input::{on_error, Input};

pub fn solve(input: &Input) -> Result<u64, String> {
let mut left_list = ArrayStack::<1024, u32>::new();
Expand Down

0 comments on commit 02aa2fd

Please sign in to comment.