From 46eda1faf09a3b33d925ea1692d6b38029606c4c Mon Sep 17 00:00:00 2001 From: Justin Wernick Date: Wed, 11 Dec 2019 01:18:13 +0200 Subject: Input parsing for day 6 --- src/bin/day_5.rs | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'src/bin/day_5.rs') diff --git a/src/bin/day_5.rs b/src/bin/day_5.rs index e7539e1..a3cf869 100644 --- a/src/bin/day_5.rs +++ b/src/bin/day_5.rs @@ -11,17 +11,13 @@ use structopt::StructOpt; type Intcode = i32; #[derive(Debug, StructOpt)] -#[structopt(name = "Day 2: 1202 Program Alarm")] +#[structopt(name = "Day 5: Sunny with a Chance of Asteroids")] /// Executes an Intcode program /// /// The program is read from stdin as a series of comma-separated /// values. Newlines are ignored. /// -/// If an output is provided, all possible inputs are tried to find -/// the input that results in the desired output. In this case, the -/// inputs are returned in the format (noun, verb). -/// -///See https://adventofcode.com/2019/day/5 for details. +/// See https://adventofcode.com/2019/day/5 for details. struct Opt { #[structopt(short = "i", long = "input")] input: Vec, -- cgit v1.2.3