Class Solution
- java.lang.Object
-
- g0501_0600.s0506_relative_ranks.Solution
-
public class Solution extends Object
506 - Relative Ranks.Easy
You are given an integer array
scoreof sizen, wherescore[i]is the score of theithathlete in a competition. All the scores are guaranteed to be unique.The athletes are placed based on their scores, where the
1stplace athlete has the highest score, the2ndplace athlete has the2ndhighest score, and so on. The placement of each athlete determines their rank:- The
1stplace athlete’s rank is"Gold Medal". - The
2ndplace athlete’s rank is"Silver Medal". - The
3rdplace athlete’s rank is"Bronze Medal". - For the
4thplace to thenthplace athlete, their rank is their placement number (i.e., thexthplace athlete’s rank is"x").
Return an array
answerof sizenwhereanswer[i]is the rank of theithathlete.Example 1:
Input: score = [5,4,3,2,1]
Output: [“Gold Medal”,“Silver Medal”,“Bronze Medal”,“4”,“5”]
Explanation: The placements are [1st, 2nd, 3rd, 4th, 5th].
Example 2:
Input: score = [10,3,8,9,4]
Output: [“Gold Medal”,“5”,“Bronze Medal”,“Silver Medal”,“4”]
Explanation: The placements are [1st, 5th, 3rd, 2nd, 4th].
Constraints:
n == score.length1 <= n <= 1040 <= score[i] <= 106- All the values in
scoreare unique.
- The
-
-
Constructor Summary
Constructors Constructor Description Solution()
-
-
-
Method Detail
-
findRelativeRanks
public String[] findRelativeRanks(int[] nums)
-
-