Translations:FP Homework 1/17/en
Jump to navigation
Jump to search
Implement the function puzzle
, it will simulate the game similar to 15 Puzzle. In our case, we have 25 squares, where 24 squares are ocupied by tiles with big case letters from 'A'
to 'X'
. One tile is free, it is denotated by ' '
. In one move, you can move a tile (denotated by its letter) into the free one. The function gets the original configuration and a sequence of valid moves. It will output the resulting configuration.