Return Besson Ranks. You can look at this article.
Besson ranking takes into account ties.
If input is
input = [1 2 2 3];
then in a regular ranking we should return
regularRanks = [1 2 3 4];
However a tie occurs at 2 and 3 in the regular ranking. So you should average their position which is (2 + 3 )/ 2 = 2.5
Finally;
bessonRankings= [1 2.5 2.5 4]
Choose the best fitting dominoes
161 Solvers
Check if number exists in vector
2311 Solvers
243 Solvers
82 Solvers
26 Solvers