Skip to content

Commit

Permalink
cargo fmt ...
Browse files Browse the repository at this point in the history
  • Loading branch information
bofh69 committed Jan 12, 2023
1 parent 40ea6f8 commit b855a27
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/day19.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,15 @@ use aoc_runner_derive::{aoc, aoc_generator};
// use rayon::prelude::*;

type CountType = u16;
type InputType = (u8, CountType, CountType, CountType, CountType, CountType, CountType);
type InputType = (
u8,
CountType,
CountType,
CountType,
CountType,
CountType,
CountType,
);
type SolutionType = i32;

#[aoc_generator(day19)]
Expand Down

0 comments on commit b855a27

Please sign in to comment.