summary refs log tree commit diff homepage
diff options
context:
space:
mode:
authorJune McEnroe <programble@gmail.com>2016-12-03 22:43:42 -0500
committerJune McEnroe <june@causal.agency>2020-11-22 00:13:50 -0500
commit327423ced0feb5ad310f8f885d987881fd3db678 (patch)
tree9ee9b863d76f32d0c263c914c8f4351cc5817c8f
parentDay 2 (diff)
downloadaoc-327423ced0feb5ad310f8f885d987881fd3db678.tar.gz
aoc-327423ced0feb5ad310f8f885d987881fd3db678.zip
Remove unused import
Diffstat (limited to '')
-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);