In [1]:
%load_ext autoreload
%autoreload 2
from rush import *
import matplotlib.pyplot as plt
import numpy as np
import time
In [2]:
s = State()
s.load_puzzle("jams/Solved.txt")
s.plot()
print("Is Goal: ", s.is_goal())
Is Goal:  True
In [ ]: