Published onMay 28, 2024Top K Frequent ElementspythonalgorithmhashmapGiven an integer array nums and an integer k, return the k most frequent elements. You may return the answer in any order.
Published onMay 27, 2024Longest Substring without Repeating CharacterspythonalgorithmhashmapGiven a string s, find the length of the longest substring without repeating characters.
Published onMay 26, 2024Design HashmappythonalgorithmhashmapDesign a HashMap without using any built-in hash table libraries.