Skip to content

Instantly share code, notes, and snippets.

View AlphaOmega113's full-sized avatar
๐Ÿ˜€

Omega33 AlphaOmega113

๐Ÿ˜€
  • 10:10 (UTC -12:00)
View GitHub Profile
@AlphaOmega113
AlphaOmega113 / chess.py
Created February 11, 2025 04:49 — forked from rsheldiii/chess.py
chess program for python
"""CONVENTIONS:
positions are done row-column from the bottom left and are both numbers. This corresponds to the alpha-number system in traditional chess while being computationally useful. they are specified as tuples
"""
import itertools
WHITE = "white"
BLACK = "black"