Haneunhanlee.hashnode.dev·Dec 21, 2022[Solution]506. Relative RanksProblem Problem_Link Solutions (time, space) O(n), O(n) public class Solution { public String[] findRelativeRanks(int[] nums) { Integer[] index = new Integer[nums.length]; String[] result = new String[nums.length]; for (i...DiscussAlgorithm Solving Study506. Relative Ranks