This problem deals with a simplified version of a game called “Mind”. In this game, a group triesto cooperatively solve a problem. Assume: - There are 2-6 players . - Each player has 1-9 cards in sorted order. - Each card value is between 10 and 99 . - There are no duplicate values, i.e., a card is in at most one hand. The objective of the game is for all the players to put all the cards down in sorted order . Given the cardsin each hand, you are to provide the order for the players to place their cards down.
This problem deals with a simplified version of a game called “Mind”. In this game, a group tries to cooperatively solve a problem. Assume: - There are 2-6 players (called A, B, C, D, E, F). - Each player has 1-9 cards in sorted order. - Each card value is between 10 and 99 (inclusive). - There are no duplicate values, i.e., a card (number) is in at most one hand. The objective of the game is for all the players to put all the cards down in sorted order (in the real game, players do not see their own cards, hence the name for the game – Mind). Given the cards in each hand, you are to provide the order for the players to place their cards down.