summary refs log tree commit diff homepage
diff options
context:
space:
mode:
-rw-r--r--src/bin/day01.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/day01.rs b/src/bin/day01.rs
index a198e64..26dd306 100644
--- a/src/bin/day01.rs
+++ b/src/bin/day01.rs
@@ -1,6 +1,6 @@
 use std::collections::HashSet;
 use std::io::{self, Read};
-use std::ops::{Add, Mul};
+use std::ops::Add;
 
 #[derive(Clone, Copy, PartialEq, Eq, Hash)]
 struct Point(i32, i32);