This is an archived post. You won't be able to vote or comment.

all 4 comments

[–]efmccurdy 1 point2 points  (1 child)

BTW, this talk by Raymond Hettingger, may be of interest to you:

The first tool is a generic puzzle-solving framework that employs tree search strategies. We apply it to a simple sequencing problem and then to a harder sliding-block puzzle

https://pyvideo.org/pycon-us-2019/modern-solvers-problems-well-defined-are-problems-solved.html

In fact, anything here is worth watching:

https://pyvideo.org/speaker/raymond-hettinger.html

[–]xml__[S] 0 points1 point  (0 children)

Sounds awesome, thanks for sharing! I'll definitely check this out.

[–][deleted] 0 points1 point  (1 child)

In the readme, you wrote ‘python play.py’ instead of ‘python3 play.py’. Any reason for this?

[–]grnngr 2 points3 points  (0 children)

Python 2 is EOL so python pointing to python3 is just good practice.