Skip to content

Instantly share code, notes, and snippets.

View lxjhk's full-sized avatar
💥
Minting tokens

Jason lxjhk

💥
Minting tokens
  • Bits, Bytes and Galaxy
  • /dev/random
View GitHub Profile
@lxjhk
lxjhk / CS170Midterm2.py
Last active April 7, 2018 07:33
CS170Midterm2-Proof of correctness
import random
import sys
sys.setrecursionlimit(1000)
N = 60 # Size of the Chess Board
chessBoard = [] # Chess Board Array
###################
# Helper functions#