Home > Article > Backend Development > Rank Transform of an Array
1331. Rank Transform of an Array
Difficulty: Easy
Topics: Array, Hash Table, Sorting
Given an array of integers arr, replace each element with its rank.
The rank represents how large the element is. The rank has the following rules:
Example 1:
Example 2:
Example 3:
Constraints:
Hint:
Solution:
We can break it down into the following steps:
Let's implement this solution in PHP: 1331. Rank Transform of an Array
Explanation:
Copy and sort the array:
- We create a copy of the input array $sorted and sort it. This helps in determining the rank of each unique element.
Assign ranks to elements:
- We iterate through the sorted array and use a hash map $rank to store the rank of each unique element.
- We use isset to check if an element has already been assigned a rank. If not, we assign the current rank and increment it.
Replace elements with their ranks:
- We then iterate through the original array and replace each element with its corresponding rank by looking it up in the $rank hash map.
Time Complexity:
This solution efficiently handles large arrays while maintaining simplicity.
Contact Links
If you found this series helpful, please consider giving the repository a star on GitHub or sharing the post on your favorite social networks ?. Your support would mean a lot to me!
If you want more helpful content like this, feel free to follow me:
The above is the detailed content of Rank Transform of an Array. For more information, please follow other related articles on the PHP Chinese website!