All Downloads are FREE. Search and download functionalities are using the official Maven repository.

g0501_0600.s0506_relative_ranks.Solution.kt Maven / Gradle / Ivy

There is a newer version: 1.28
Show newest version
package g0501_0600.s0506_relative_ranks

// #Easy #Array #Sorting #Heap_Priority_Queue #2023_01_10_Time_244_ms_(94.23%)_Space_39_MB_(86.54%)

class Solution {
    fun findRelativeRanks(score: IntArray): Array {
        fun mapPlace(score: Int, sortedScores: IntArray): String {
            val place = sortedScores.lastIndex - sortedScores.binarySearch(score)
            return when {
                place > 2 -> "${place + 1}"
                place == 0 -> "Gold Medal"
                place == 1 -> "Silver Medal"
                place == 2 -> "Bronze Medal"
                else -> throw NoWhenBranchMatchedException()
            }
        }

        val sortedScores = score.clone().apply { sort() }
        return score.map { mapPlace(it, sortedScores) }.toTypedArray()
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy