remove duplicate input
This commit is contained in:
parent
fd789b1151
commit
7b2a3b76a5
File diff suppressed because it is too large
Load Diff
|
@ -1,5 +1,5 @@
|
||||||
fn main() {
|
fn main() {
|
||||||
let input = include_str!("./input1.txt");
|
let input = include_str!("./input.txt");
|
||||||
println!("{}", part1(input));
|
println!("{}", part1(input));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,7 @@ use nom::{
|
||||||
};
|
};
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
let input = include_str!("./input2.txt");
|
let input = include_str!("./input.txt");
|
||||||
println!("{}", part2(input));
|
println!("{}", part2(input));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue