Question: Write a method num_misplaced(self) that counts and returns the number of tiles in the called Board object that are not where they should be in
Write a method num_misplaced(self) that counts and returns the number of tiles in the called Board object that are not where they should be in the goal state. You should not include the blank cell in this count, even if its not where it should be in the goal state. For example:
>>> b = Board('142358607') >>> b 1 4 2 3 5 8 6 _ 7 >>> b.num_misplaced() # 1,4,5,7,8 tiles are out of place 5 >>> b.move_blank('right') # move 7 tile where it belongs True >>> b 1 4 2 3 5 8 6 7 _ >>> b.num_misplaced() # 1,4,5,8 tiles are still out of place 4 Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
