Problem 46576. Award medals to winners
A competition awards medals to the winners: gold to first place, silver to second place, and bronze to third place. In the case of ties, these rules apply:
- If two competitors tie for gold, the next competitor gets bronze, and no silver is awarded. If three or more competitors tie for gold, no other medals are awarded.
- If two or more competitors tie for silver, no bronze is awarded.
- If two or more competitors tie for bronze and fewer than three medals have been awarded so far, all who tied for bronze get medals.
Write a function that takes a vector of scores and identifies the winners (i.e., the position of the winning scores in the vector). In this competition, higher scores are better. If a medal is not awarded, set the output to the empty set.
Solution Stats
Problem Comments
Solution Comments
Show commentsProblem Recent Solvers13
Suggested Problems
-
Project Euler: Problem 6, Natural numbers, squares and sums.
2376 Solvers
-
What is the distance from point P(x,y) to the line Ax + By + C = 0?
547 Solvers
-
middleAsColumn: Return all but first and last element as a column vector
628 Solvers
-
Given a window, how many subsets of a vector sum positive
862 Solvers
-
Numbers spiral diagonals (Part 2)
168 Solvers
More from this Author314
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!