···8686}
87878888fn main() {
8989- let file_contents = std::fs::read_to_string("input.txt").expect("unable to read file");
8989+ let file_contents = include_str!("../input.txt");
9090 let mut turns: Vec<(Direction, usize)> = Vec::new();
9191 for line in file_contents.lines() {
9292 turns.push(parse(line));
+1-1
2025/2/src/main.rs
···4040}
41414242fn main() {
4343- let file_contents = std::fs::read_to_string("./input.txt").expect("unable to read file");
4343+ let file_contents = include_str!("../input.txt");
4444 let ranges: Vec<(usize, usize)> = file_contents
4545 .trim_end()
4646 .split(',')