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