1
Fork 0

Fix import order.

This commit is contained in:
Bauke 2021-12-14 20:41:53 +01:00
parent f4cb00ba69
commit d92fef6411
Signed by: Bauke
GPG Key ID: C1C0F29952BCF558
1 changed files with 1 additions and 1 deletions

View File

@ -1,11 +1,11 @@
use std::collections::HashSet;
use color_eyre::{eyre::eyre, Result};
use itertools::Itertools;
mod canvas;
use canvas::{Canvas, Fold, Point};
use itertools::Itertools;
pub fn solve() -> Result<()> {
let input_data = include_str!("../../data/day_13.txt").trim();