This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# made by H4K47L4N1M | @lior5654 | |
from typing import Text, List | |
from sage.all import * | |
# Constants | |
ALPHABET = "ABCDEFGHIJKLMNOPQRSTUVWXYZ_!?" | |
INV_ALPHABET = {c: i for i, c in enumerate(ALPHABET)} |