Question: Write a function named place _ ladders ( board , NUM _ SQUARES,NUM _ LADDERS ) that adds three ladders to the board from the

Write a function named place_ladders(board, NUM_SQUARES,NUM_LADDERS) that adds three ladders to the board from the task above. The ladders should be placed randomly. If the cell has a ladder top represent it with L and ladder bottom with l. Note that we use this representation for snakes and ladders so that when the board is displayed on the screen, the player can clearly see which cells have ladder top and ladder bottom.
Input: The current status of the board, number of squares and number of ladders.
Output: A table that represents the 5x10 board with snakes and ladders placed on the board in specific places.
For example:
>>> board = initialise_board (board,NUM_SQUARES)
>>> board = place_ladders(board,NUM_SQUARES,NUM_LADDERS)
>>> print_board(board)
 Write a function named place_ladders(board, NUM_SQUARES,NUM_LADDERS) that adds three ladders to

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!