Finish day 3
This commit is contained in:
9
odin/day03/scratch.py
Normal file
9
odin/day03/scratch.py
Normal 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)
|
||||
Reference in New Issue
Block a user