summaryrefslogtreecommitdiffstats
path: root/2015/rs/code/three
diff options
context:
space:
mode:
Diffstat (limited to '2015/rs/code/three')
-rw-r--r--2015/rs/code/three/src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/2015/rs/code/three/src/main.rs b/2015/rs/code/three/src/main.rs
index 770fc10..4e7d083 100644
--- a/2015/rs/code/three/src/main.rs
+++ b/2015/rs/code/three/src/main.rs
@@ -1,6 +1,6 @@
use std::collections::HashSet;
-static INPUT: &'static str = include_str!("input.txt");
+static INPUT: &str = include_str!("input.txt");
fn main() {
let valueified = INPUT.chars().map(|c| match c { '<' => (-1, 0), '>' => (1, 0), '^' => (0, 1), 'v' => (0, -1), _ => (0, 0) });