2023 Day 11 Complete!

Added a todo file to track changes to my helpers that need
to be propagated through previous days/years
This commit is contained in:
2023-12-11 08:43:32 -06:00
parent be17b84517
commit 77d53011a1
6 changed files with 284 additions and 11 deletions

View File

@@ -23,6 +23,7 @@ const (
FILL_CHAR = "\u2588"
CLEAR_SCREEN = "\033[H\033[2J"
CLEAR_LINE = "\033[1K"
MAX_INT = int(^uint(0) >> 1)
MIN_INT = -MAX_INT - 1