Skip to content

Instantly share code, notes, and snippets.

View ripopov's full-sized avatar
💤

Roman Popov ripopov

💤
  • Intel
  • Hillsboro, OR
View GitHub Profile
# Your code here
# You can import some modules or create additional functions
class Node:
def __init__(self, location, step_dir, prev_node):
self.loc = location
self.step = step_dir
self.prev = prev_node
class Solution: