Function aoc::y2019::intcode::parse_input

source ·
pub fn parse_input(input: &str) -> Result<Vec<i64>>
Expand description

Parse an input string for use by the Program. The string is expected to be a list of integers separated by comma ,.

Errors

If the input is invalid in any way, a ProgramError::ParseInt is returned.