Scarne’s Challenge

It is similar in concept to the popular 15-puzzle: a sliding block puzzle, but with a larger search space. The number of possible board starting positions is 24!=620,448,401,733,239,439,360,000, or about 620 sextillion possible configurations. Clearly exhaustive search is not a good way to proceed with this problem.
Nevertheless, it appears to be on the border of doability using clever versions of iterated deepening A*. Korf and Taylor found optimal solutions for the simpler 24-puzzle.
I’ve begun working on implementing a computer player using ideas from their papers.