Update template

This commit is contained in:
kalle 2022-12-03 16:46:24 +01:00
parent c7b599993c
commit 60af8bb695

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(());
}