Files should be split by newline
This commit is contained in:
parent
c3e13888d0
commit
811f81bb40
1 changed files with 1 additions and 0 deletions
|
@ -15,6 +15,7 @@ pub fn read_input_files(files: Vec<PathBuf>) -> Result<String, String> {
|
|||
input_file.read_to_string(&mut input),
|
||||
format!("Failed to read input file {}.", input_file_path.display())
|
||||
));
|
||||
input.push('\n');
|
||||
}
|
||||
return Ok(input);
|
||||
}
|
||||
|
|
Reference in a new issue