diff options
author | June McEnroe <programble@gmail.com> | 2016-12-03 22:43:42 -0500 |
---|---|---|
committer | June McEnroe <programble@gmail.com> | 2016-12-03 22:43:42 -0500 |
commit | d11741884f9aad9db5e90aa9dbe5348456648306 (patch) | |
tree | fc557555e13959e02dad77d33c61525cc7f8f97f /src | |
parent | Day 2 (diff) | |
download | aoc-d11741884f9aad9db5e90aa9dbe5348456648306.tar.gz aoc-d11741884f9aad9db5e90aa9dbe5348456648306.zip |
Remove unused import
Diffstat (limited to '')
-rw-r--r-- | src/bin/day01.rs | 2 |
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); |