Update template

master
kalle 2022-12-03 16:46:24 +01:00
parent c7b599993c
commit 60af8bb695
1 changed files with 13 additions and 1 deletions

View File

@ -1,4 +1,16 @@
use std::fs;
fn main() {
use anyhow::Result;
use itertools::Itertools;
fn main() -> Result<()> {
let input = fs::read_to_string("input/0X.txt")?;
let lines: Vec<&str> = input
.split("\n")
.filter(|s| *s != "")
.collect_vec();
return Ok(());
}