diff --git a/day23/src/main.rs b/day23/src/main.rs index e1014e1..94fb978 100644 --- a/day23/src/main.rs +++ b/day23/src/main.rs @@ -114,17 +114,6 @@ impl Value { Self::Register(first_char) } } - - // fn is_register(&self) -> bool { - // match self { - // Value::Register(_) => true, - // Value::Numeric(_) => false, - // } - // } - - // fn is_numeric(&self) -> bool { - // !self.is_register() - // } } impl Instruction {