Finish day 3

This commit is contained in:
2026-02-17 19:46:35 -05:00
parent c36f402874
commit f4ad14a34a
2 changed files with 447 additions and 0 deletions

9
odin/day03/scratch.py Normal file
View File

@@ -0,0 +1,9 @@
BOUND_a = ord('a')
BOUND_z = ord('z')
BOUND_Z = ord('Z')
BOUND_A = ord('A')
print(BOUND_z - ord('v'))
print(25 - (BOUND_z - ord('v')))
print((25 - (BOUND_z - ord('v'))) + 27)