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
import typing | |
from collections import namedtuple | |
from string import ascii_lowercase | |
Moves = namedtuple('Moves', 'dxs, dys, free') | |
Pos = typing.Tuple[int, int] | |
Board = typing.Dict[Pos, str] | |
BOARD_SIZE = 4 |
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
import sitecustomize | |
foobar = 42 | |
print(foo) | |
# Prints | |
# name 'foo' is not defined | |
# Did you mean foobar? |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.