Skip to content

Instantly share code, notes, and snippets.

View jonatasleon's full-sized avatar
👟
Just code it

Jonatas Leon jonatasleon

👟
Just code it
View GitHub Profile
@jonatasleon
jonatasleon / board.py
Created May 6, 2022 18:59
Board sheet demonstration
from itertools import product
from typing import Iterable, Literal
class Board:
def __init__(self):
self.board = {}
def add_piece(self, x, y, piece, axis: Literal["x", "y"] = "x"):
"""Add a piece to the board.