Skip to content

Instantly share code, notes, and snippets.

@Commoble
Commoble / areagrid.py
Created August 29, 2019 04:25
Python script to generate permutations of a 3x3 grid divided into rectangles
import string
primes = []
first100primes = []
START_VALS = range(0,3)
SIZE_VALS = range(1,4)
class XY:
def __init__(self, x, y):
self.x = x