diff --git a/src/templates/index.html b/src/templates/index.html index f722b1b..b1e7943 100644 --- a/src/templates/index.html +++ b/src/templates/index.html @@ -1,20 +1,29 @@
- - -| Rank ℹ️ | +Rank | User | Problem | Runtime (s) | @@ -68,15 +79,15 @@
|---|---|---|---|---|
| {{ loop.index }} | {{ entry[0] }} |
{{ problem_titles.get(entry[1], 'Unknown') }}
@@ -94,18 +105,15 @@
-
+
How Ranking Works-- The leaderboard uses a weighted scoring system to determine overall rank. - It considers multiple metrics for each submission: - +The leaderboard uses a weighted scoring system to determine overall rank:
Each metric is normalized against the best in the leaderboard, and the overall score is calculated as: +Overall score is calculated as:
runtimeScore = yourRuntime / bestRuntime
Lower overall scores are better. If two scores are equal, the earlier submission ranks higher. +Lower overall scores are better. If scores are equal, earlier submission ranks higher. |