<?php // assumed already rsort()ed. $scores = [92, 84, 84, 84, 83, 65, 41, 38, 38, 37]; $gappedRank = 0; $lookup = []; foreach ($scores as $score) { ++$gappedRank; $lookup[$score] ??= $gappedRank; } var_export($lookup);
You have javascript disabled. You will not be able to edit any code.