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 <programble@gmail.com>2016-12-03 22:43:42 -0500
commitd11741884f9aad9db5e90aa9dbe5348456648306 (patch)
treefc557555e13959e02dad77d33c61525cc7f8f97f
parentDay 2 (diff)
downloadaoc-d11741884f9aad9db5e90aa9dbe5348456648306.tar.gz
aoc-d11741884f9aad9db5e90aa9dbe5348456648306.zip
Remove unused import
-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);