a geicko-2 based round robin ranking system designed to test c++ battleship submissions battleship.dunkirk.sh
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: put first completed in pending

+1 -1
+1 -1
internal/storage/database.go
··· 219 219 1 as is_pending 220 220 FROM submissions s 221 221 LEFT JOIN matches m ON (m.player1_id = s.id OR m.player2_id = s.id) AND m.is_valid = 1 222 - WHERE s.is_active = 1 AND s.status IN ('pending', 'testing') 222 + WHERE s.is_active = 1 AND s.status IN ('pending', 'testing', 'completed') 223 223 GROUP BY s.username, s.upload_time 224 224 HAVING COUNT(m.id) = 0 225 225