Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
SET @r := 1, @s := (SELECT MAX(Score) FROM Scores);
SELECT Score,Rank FROM (SELECT Score, IF(@s = Score,@r,@r:=@r+1) AS Rank, @s:=Score FROM Scores ORDER BY Score DESC) as t
Looks like your connection to LeetCode Discuss was lost, please wait while we try to reconnect.