first 3 levels

This commit is contained in:
maks-ddembinski
2021-02-19 23:16:11 -05:00
commit 8514b4e6ab
3 changed files with 1246 additions and 0 deletions

3
lvl0.py Normal file
View File

@@ -0,0 +1,3 @@
import math
print(math.pow(2,38))

13
lvl1.py Normal file
View File

@@ -0,0 +1,13 @@
orig = "g fmnc wms bgblr rpylqjyrc gr zw fylb. rfyrq ufyr amknsrcpq ypc dmp. bmgle gr gl zw fylb gq glcddgagclr ylb rfyr'q ufw rfgq rcvr gq qm jmle. sqgle qrpgle.kyicrpylq() gq pcamkkclbcb. lmu ynnjw ml rfc spj."
url = "map"
new = []
for each in url:
if each != ' ':
new.append(chr(ord(each) + 2))
if each == ' ':
new.append(' ')
for letter in new:
print(letter)

1230
lvl2.py Normal file

File diff suppressed because it is too large Load Diff