1
0
Fork 0

prefer flat source folder

This commit is contained in:
Stefan Bühler 2020-12-05 10:52:10 +01:00
parent ec9ae4a6ce
commit f1889cfccc
3 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
const INPUT: &str = include_str!("../../../data/day1/input");
const INPUT: &str = include_str!("../../data/day1/input");
fn main() {
let expenses: Vec<_> = INPUT.split_whitespace().map(|s| s.parse::<u32>().unwrap()).collect();

View File

@ -1,6 +1,6 @@
use std::convert::TryInto;
const INPUT: &str = include_str!("../../../data/day2/input");
const INPUT: &str = include_str!("../../data/day2/input");
struct Policy {
min: usize,

View File

@ -1,4 +1,4 @@
const INPUT: &str = include_str!("../../../data/day3/input");
const INPUT: &str = include_str!("../../data/day3/input");
struct Forest {
pub rows: usize,