Skip to content

Commit e4193ed

Browse files
committed
Descrease challenger points
1 parent a2667df commit e4193ed

File tree

3 files changed

+2
-574
lines changed

3 files changed

+2
-574
lines changed

docs/004-seasons-and-points.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ For each finished tournament (grade ≠ open), we award Season Points by final p
6767

6868
rookie: [8, 4, 2] (top‑3)
6969

70-
challenger: [64, 32, 16, 8, 4, 2] (top‑6)
70+
challenger: [16, 8, 4, 2] (top‑6)
7171

7272
pro: [128, 64, 32, 16, 8, 4, 2] (top‑7)
7373

services/app/apps/codebattle/lib/codebattle/tournament/tournament_user_result.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ defmodule Codebattle.Tournament.TournamentUserResult do
4343
WITH grade_points AS (
4444
SELECT 'rookie' as grade, UNNEST(ARRAY[8, 4, 2]) as points, GENERATE_SERIES(1, 3) as position
4545
UNION ALL
46-
SELECT 'challenger' as grade, UNNEST(ARRAY[64, 32, 16, 8, 4, 2]) as points, GENERATE_SERIES(1, 6) as position
46+
SELECT 'challenger' as grade, UNNEST(ARRAY[16, 8, 4, 2]) as points, GENERATE_SERIES(1, 6) as position
4747
UNION ALL
4848
SELECT 'pro' as grade, UNNEST(ARRAY[128, 64, 32, 16, 8, 4, 2]) as points, GENERATE_SERIES(1, 7) as position
4949
UNION ALL

0 commit comments

Comments
 (0)