summaryrefslogtreecommitdiff
path: root/day1/src
diff options
context:
space:
mode:
Diffstat (limited to 'day1/src')
-rw-r--r--day1/src/main.rs21
1 files changed, 0 insertions, 21 deletions
diff --git a/day1/src/main.rs b/day1/src/main.rs
deleted file mode 100644
index 7e18b94..0000000
--- a/day1/src/main.rs
+++ /dev/null
@@ -1,21 +0,0 @@
-use std::fs::File;
-use std::io::prelude::*;
-use std::io::BufReader;
-
-fn main() {
- let file = File::open("input.txt").expect("File not found");
- let reader = BufReader::new(file);
- let values: Vec<i32> = reader
- .lines()
- .map(|x| x.unwrap().parse::<i32>().unwrap())
- .collect::<Vec<i32>>();
- let mut increasing: u16 = 0;
-
- for index in 1..values.len() {
- if values[index - 1] < values[index] {
- increasing += 1;
- }
- }
-
- println!("{}", increasing);
-}