prefer flat source folder
This commit is contained in:
parent
ec9ae4a6ce
commit
f1889cfccc
@ -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();
|
@ -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,
|
@ -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,
|
Loading…
Reference in New Issue
Block a user