We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ddb47ac commit d0398efCopy full SHA for d0398ef
src/bin/05.rs
@@ -1,10 +1,11 @@
1
advent_of_code::solution!(5);
2
3
+use std::cmp::Ordering;
4
+
5
use advent_of_code::maneatingape::hash::*;
6
use advent_of_code::maneatingape::iter::*;
7
use advent_of_code::maneatingape::parse::*;
8
-use std::cmp::Ordering;
9
10
fn parse_data(input: &str) -> (FastMap<u32, Vec<u32>>, Vec<Vec<u32>>) {
11
let (left, right) = input.split_once("\n\n").unwrap();
0 commit comments