9 lines
165 B
Python
9 lines
165 B
Python
|
class Node:
|
||
|
state = None #[{stan}]
|
||
|
parent = None #[Node]
|
||
|
action = None #[Forward/Right/Left]
|
||
|
|
||
|
def __init__(self, state):
|
||
|
self.state = state
|
||
|
|