Skip to content

Instantly share code, notes, and snippets.

View kingnebby's full-sized avatar

King Nebby kingnebby

View GitHub Profile
# This is a Python file XD
import sys
import string
import base64
# Globals
def getAlphaToNumbersDict():
alpha_to_numbers = {}
for index, char in enumerate(string.ascii_lowercase, 1):
alpha_to_numbers[char] = index % 10