feat: solve day 1 part 1

This commit is contained in:
Stevan Freeborn
2025-12-01 06:49:26 -06:00
parent 2734425a33
commit df4bd2cfa3
10 changed files with 297 additions and 3 deletions
+5
View File
@@ -0,0 +1,5 @@
// Package direction provides constants for left and right directions.
package direction
const Left = "L"
const Right = "R"