Published onMay 29, 2024Letter Combinations of a Phone NumberpythonalgorithmgraphdfsGiven a string containing digits from 2-9 inclusive, return all possible letter combinations that the number could represent
Published onMay 29, 2024PermutationspythonalgorithmgraphdfsGiven an array nums of distinct integers, return all the possible permutations. You can return the answer in any order. All the integers of nums are unique.
Published onMay 28, 2024Number of IslandspythonalgorithmgraphdfsGiven an integer array nums and an integer k, return the k most frequent elements. You may return the answer in any order.
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.