Skip to content

Instantly share code, notes, and snippets.

View Stannislav's full-sized avatar
🦅

Stanislav Schmidt Stannislav

🦅
  • Expedia Group
  • Geneva, Switzerland
View GitHub Profile
from random import randint
sq = "#"
size = 15
class Node:
def __init__(self, state, px, py, pred):
self.state = state
self.px = px
self.py = py