From 8e07b24c818ad48500c929281ed36b62a75406fc Mon Sep 17 00:00:00 2001 From: timeshifter Date: Sat, 4 Jul 2026 17:30:50 +0200 Subject: [PATCH] clean up 23 --- day23/src/main.rs | 11 ----------- 1 file changed, 11 deletions(-) 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 {