1
0
Fork 0

Move input

This commit is contained in:
Vivianne 2022-11-30 22:46:09 -08:00
parent d983dd3d19
commit b946b30978
3 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
name = "aoc-vv"
version = "0.1.0"
edition = "2021"
default-run = "p02"
default-run = "p01"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

View File

@ -3,7 +3,7 @@ use std::io::{self, BufRead};
use std::collections::BinaryHeap;
fn main() {
let filename = "input.txt";
let filename = "etc/p01.txt";
let file = fs::File::open(filename).unwrap();
let lines = io::BufReader::new(file).lines();