Leetcode 1244. Design A Leaderboard
Design a data structure that supports addScore(playerId, score), reset(playerId), and top(K) which returns the sum of the top K players' scores; the core challenge is maintaining dynamic scores under frequent updates and answering top-K sum queries efficiently (e.g., via an ordered structure or heaps combined with a map).
Question Timeline
See when this question was last asked and where, including any notes left by other candidates.
Your account is free and you can post anonymously if you choose.