I like the new layout for the list of multi games, much more consistent with the puzzles and optim categories.
Seeing your score and rank immediately is very nice. Kudos
A nice improvement would be to also have an estimation of the resulting number of CPs so we can see where it’s more interesting to improve. This might apply to optimization puzzles too.
3 Likes
Yes, you are totally right. This is on our todo list (which is quite huge !)
2 Likes
If you are using Greasemonkey, here is a script I made to show my CPs and how much I can improve for multi games:
// ==UserScript==
// @name Scores
// @include https://www.codingame.com/*
// @version 1
// @grant none
// ==/UserScript==
$(document).on("DOMSubtreeModified", '.multi .puzzle-score-total', function(){
var elem = $(this).parent();
var C = elem.find('.puzzle-score-value').html();
var N = elem.find('.puzzle-score-total').html();
if (C && N && C != 'N/A' && N != 'N/A') {
var S = Math.round( Math.pow( Math.min(N, 2500), (N - C + 1) / N) );
elem.parent().append('<div style="font-weight: 400">score=' + S + ' / diff=' + (N - S) + '</div>');
}
});
I hope this will help you in the meantime
2 Likes