Upload files to "/"

This commit is contained in:
s481876 2024-04-17 15:38:28 +02:00
parent 5019d63022
commit 9fcded9ddc

View File

@ -280,7 +280,8 @@ def bfs(isstate,final):
explored.append(node)
successors=succ(node)
for successor in successors:
fringe.append(successor)
if (successor not in fringe and successor not in explored):
fringe.append(successor)
# Main game loop
def game_loop():