use std::{collections::HashSet, path::Path, str::FromStr}; use crate::input::{AdventError, read_into_vec}; impl FromStr for ScratchGame { type Err = AdventError; fn from_str(s: &str) -> Result { todo!() } } struct ScratchGame { id: i32, my_numbers: HashSet, winning_numbers: HashSet } pub fn one() -> Result { let games = read_into_vec::(Path::new("resources/input4.txt")); Ok(0) } pub fn two() -> Result { Ok(0) }