Question: def slide_right(new_board: str, n_rows: int, game_board: str) -> str: This function returns a new string in the original game board >>>slide_right(RED_SQUARE,1,####) R### >>>slide_right(YELLOW_SQUARE,2,####) Y###
def slide_right(new_board: str, n_rows: int, game_board: str) -> str: """This function returns a new string in the original game board >>>slide_right(RED_SQUARE,1,"####") "R###" >>>slide_right(YELLOW_SQUARE,2,"####") "Y###" """ return
help to finish this function,(this function is to add a R or Yat the most left and remove the most right character until the whole row are filled by R or Y)
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
