You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| 451 |[Sort Characters By Frequency](https://leetcode.com/problems/sort-characters-by-frequency/)| Medium |[SortCharactersByFrequency.java](src/leetcode/solution/Hash/SortCharactersByFrequency.java)| Map and Sort. Or Bucket Sort. |
260
261
| 567 |[Longest Consecutive Sequence](https://leetcode.com/problems/longest-consecutive-sequence/)| Medium |[LongestConsecutiveSequence.java](src/leetcode/solution/Hash/LongestConsecutiveSequence.java)| Hash Table: using HashSet save the nums. |
0 commit comments