There are 2 logical errors in your code:
The largest number starts from rank 1, followed by 2nd largest number etc... , but your code assigns the smallest number as rank 1.
Also, your code does not handle multi-way ties as it only checks the unique positioning of arrays instead of all elements' positioning
This comment is hidden because it contains spoiler information about the solution
That was it. Thanks!
What if title is the empty string?
title
Loading collection data...
There are 2 logical errors in your code:
The largest number starts from rank 1, followed by 2nd largest number etc... , but your code assigns the smallest number as rank 1.
Also, your code does not handle multi-way ties as it only checks the unique positioning of arrays instead of all elements' positioning
This comment is hidden because it contains spoiler information about the solution
That was it. Thanks!
What if
title
is the empty string?This comment is hidden because it contains spoiler information about the solution