git checkout -b <branchname>
git add
git commit -m "description of changes"
Picking the right architecture = Picking the right battles + Managing trade-offs
''' | |
Implementing arranging of BFS of 8 queen | |
''' | |
BOARD_SIZE =3 | |
goal_state =[1,2,3,4,5,6,7,8," "] | |
state1 =[1,2,3,4,5,6,7," ",8] | |
state2= [1,2," ",5,6,3,4,7,8] | |
def BFS(initial_state): |