Code
unknown
php
4 years ago
418 B
6
Indexable
function climbingLeaderboard($ranked, $player) {
// Write your code here
$sorted_array = [];
$ranked_unique = array_unique($ranked);
foreach($player as $value) {
$ranked_unique[] = $value;
$new_order = array_unique($ranked_unique);
rsort($new_order);
$index = ( array_search($value, $new_order) + 1 );
$sorted_array[] = $index;
}
return $sorted_array;
}
Editor is loading...