Skip to content

Commit a5e884a

Browse files
committed
Format all source files
cargo-fmt skips files because of rust-lang/rustfmt#3253
1 parent 8026060 commit a5e884a

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

src/day12.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
use crate::day::Day;
2-
use itertools::Itertools;
32
use hashbrown::HashMap;
3+
use itertools::Itertools;
44

55
type Cave = [u8; 2];
66

src/day13.rs

+2-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
11
use crate::{day::Day, util::CollectArray};
2-
use itertools::Itertools;
3-
use std::{
4-
collections::VecDeque,
5-
mem,
6-
};
72
use hashbrown::HashSet;
3+
use itertools::Itertools;
4+
use std::{collections::VecDeque, mem};
85

96
fn fold(grid: &mut HashSet<[u16; 2]>, fold: (u8, u16)) {
107
*grid = mem::take(grid)

0 commit comments

Comments
 (0)