in a new game called the golden game, players collect gold coins. the players get only one chance to play and only one player play at a time. the score of each player is difines as the number of coins collected by the player. a player is called a golden player if he scores more than the players who played after her. score is called golden score if it is scored by a golden player. if your are given a list of (A) of integers representing scores of players in the order they played first to last. Write a program to print all the golden scores in the list by maintaining the relative order.
INPUT- 4 5 1 3 2
OUTPUT- 5 3 2
INPUT- 9 8 10 12
OUTPUT- 12.
Comments
Leave a comment