LC: 1133. Largest Unique Number - spiralgo/algorithms GitHub Wiki
1133. Largest Unique Number
The Essence:
The most important information we need to focus on is that the array is not sorted but we need to check the frequency of each element In the array.
Details:
Therefore we need either to sort the array or use a Map implementation to keep track of the frequency of each number.