I have never practiced DSA in my life, not even in college. After getting laid off, I stumbled across your videos to learn DSA. They are so crisp, informative, and to the point. I can't thank you enough.
@e889.7 ай бұрын
Hi you got any job?
@rhitamdutta19967 ай бұрын
@@e889. not yet.
@ozgurpeynirci45864 ай бұрын
Update?
@rhitamdutta19964 ай бұрын
Hey guys, yes I did. Wouldn't have been possible without Neetcode.
@hamza-chaudhry3 ай бұрын
@@rhitamdutta1996 Nice
@Xeoncross2 жыл бұрын
I appreciate the time you put making and sharing all your content for free. Here is the $10 I might have spent on your udemy course.
@NeetCode2 жыл бұрын
Thank you so much!!!
@onlysubscriptions2152 Жыл бұрын
Does he have udemy course???
@PeterPan-xe7qw Жыл бұрын
@@onlysubscriptions2152 nah, just a hypothetical $10 he would’ve spent since most people pay wall this content, but he does it for free.
@hamdi_ Жыл бұрын
As a side note, consider donating directly to the creators if they have a donation link, because KZbin takes a whopping 30% of your donation. In this case, Neetcode accepts Patreon donations, which takes a more reasonable commission of about 8%.
@mostinho7 Жыл бұрын
@@hamdi_even 8% is too high tbh. Not for neetcode specifically, he sells his own courses and is set. But for someone else who might be in need of the money 8% is ridiculous
@rohananjaria10093 жыл бұрын
Best youtube channel for leetcode problems hands down.
@justsimple63332 жыл бұрын
i used your previous video on groupAnagrams to solve this, just hashmapped the array in to a defaultdict(int) den sorted the dictionary entirely in a descending order. Your videos have been really helpful, first time i solved a medium all by myself
@trenvert123 Жыл бұрын
That's so cool that python has a convenient way to sort hashmap by value. I looked into it for java, and it is a nightmare. I would have to create my own comparator. I think if I'm doing that, I may as well just learn bucket sort at this point.
@robinfelix3879 Жыл бұрын
haha, did the same, cheers
@moveonvillain1080 Жыл бұрын
@@trenvert123 Java is sooooo verbose......
@Albert-nc1rj9 ай бұрын
@@trenvert123 In Go I faced the same problem, spent 20 minutes trying to sort a hash map by values (failed). So I just copied values into new array and sorted them there lol.
@dumdum4077 ай бұрын
@@Albert-nc1rj you can also insert the contents of your hashMap into a second hashMap, but use the values from frequency hashMap as the keys of the second hashMap. Once you have done that, take all the keys out into an array, sort the array and retrieve first k values, use first hashMap to get integers and return that.
@joshmarion8640 Жыл бұрын
Am I the only one who is a little confused as to how this solution is O(N). If you loop through the array which is the size of the array, and then in each index you might have to loop through up to N times. So how is this not o(n^2) Edit: Nevermind, I think I realize it now, I figured I would write it out for anyone who might still be confused. As we traverse through the array, we go through the whole array. So this is O(n). But we aren't doing an operation n times at each stop. We are doing N more operation throughout the entire array. So even though the for loops are nested, we are doing N more operations throughout a for loop which is N, so the total is just N+N, which simplifies to O(N)
@abhishekdhyade7500 Жыл бұрын
Thanks a lot buddy! I was scratching my head off to find out this same doubt. Now that I saw your comment, I was able to understand it. Thanks again!!
@ahmedmansour5032 Жыл бұрын
So essentially the inner loop is just operating on the subset of N elements?
@quanmai5759 Жыл бұрын
I would say it's n+k rather than n+n, because the size of the res array is k. So after looping through the freq array of size n, you only need to fill the res array k times then stop, so k more operations. Still it's O(n)
@ubermensch_1111 Жыл бұрын
@@quanmai5759 Yah I also think so it will be n+k
@DiaaHaresYusf Жыл бұрын
@@ahmedmansour5032 but at worest case you will face frequency = 1 for each element in nums .. and O(N) is always calcualted in worest case, I have made a commend on video please go through it , you will understand what I am saying
@maierdanefan69983 жыл бұрын
Amazing contents! The best algorithms channel that focus on logic and thinking in a clear way. Happy to have found this channel, been writing neetcode ever since.
@sandeshpaudel96652 жыл бұрын
for the heap solution, it's better to use a min heap of size k rather than using a max heap and then removing max k times. Using the min heap, you would remove min and add the next frequency. by the end, you are left with k most frequent ones and removing the min gives you the answer. You can reduce this to n log k and not n log n
@gurmukhsinghnirman49352 жыл бұрын
and even for values like k = 1e9, logk is around 30 so the complexity is around O(30*n) which is basically O(n)
@sandeshpaudel96652 жыл бұрын
@@gurmukhsinghnirman4935 indeed!
@PippyPappyPatterson2 жыл бұрын
How would you cap the size of the heap `h` at size `k`? As you're adding frequencies, `if len(h) > k: heapq.heappop(h)`?
@sandeshpaudel96652 жыл бұрын
@@PippyPappyPatterson so let's suppose k = 3 and you have numbers [1 , 2 , 3, 4, 5]. You can find the k-largest or in this case 3rd largest using a min-heap of size 3. As you add in numbers, your heap can grow like this: [ 1 ] [ 1 , 2 ] [ 1, 2 , 3 ] ** you're capped at 3 *** [2, 3, 4] ** add next( 4 ) and remove min (1)** [3, 4, 5] ** add 5, remove 2 ** Now the head of the heap will be the 3rd largest element.
@MinhNguyen-lz1pg2 жыл бұрын
@@PippyPappyPatterson here class Solution: def topKFrequent(self, nums: List[int], k: int) -> List[int]: num_to_count = collections.defaultdict(int) for num in nums: num_to_count[num] += 1 min_heap = [] for num in num_to_count: if len(min_heap) < k: heapq.heappush(min_heap, (num_to_count[num], num)) else: heapq.heappushpop(min_heap, (num_to_count[num], num)) res = [] while min_heap: _, val = heapq.heappop(min_heap) res.append(val) return res
@Thrashmetalman3 жыл бұрын
the one thing I dont like about usage of heap questions is that most of the times you havge to default to some library to do it cause I doubt any of us could code up a heap in a phone screen.
@Number_Crunch2 жыл бұрын
The algorithm that you explained at 3:15 was counting sort and not bucket sort. What you did, however, towards the end was similar (not same as) bucket sort.
@namoan121610 ай бұрын
is it different?
@chrischika70266 ай бұрын
@@namoan1216 no hes wrong
@donothack29 күн бұрын
@@chrischika7026 sorry, I'm confused. who is wrong? and wrong about what?
@tweefeety3 жыл бұрын
I love you man. You're an actual angel. Your explanations are always so clear. And your drawings are so easy to understand.
@NeetCode3 жыл бұрын
Thanks, appreciate the kind words 🙂
@fortitude2422 жыл бұрын
@@NeetCode you are n angel. :)
@johnzheng8492 жыл бұрын
Your video got a me a job as an SDE at AWS!!
@NeetCode2 жыл бұрын
Congratulations 🎉🎉
@jwastken88142 жыл бұрын
Hey John, which neetcode 150 questions did they ask? I have a phone interview coming up
@andrepinto78952 жыл бұрын
While counting, you can keep track of the max occurrences and then you only need to initialize freq to that max instead of len(nums)
@amitkoushik5504 Жыл бұрын
Good one ...I spent a lot of time understanding this but finally got it..🤗🤗
@arneishprateek6444 Жыл бұрын
Sure but it's still O(N).
@s1kebeats Жыл бұрын
thx
@MrHarryGaming Жыл бұрын
count = {} maxFreq = 0 # or 1 for each in nums: count[each] = count.get(each, 0) + 1 maxFreq = max(maxFreq, count[each]) freq = [set() for i in range(maxFreq + 1)]
@HimanshuPant-c1v2 ай бұрын
this is how i did it, i basically converted the list in a dict, sorted it using values and the took out the k most frequent values but i really appreciate your videos. class Solution: from collections import Counter def topKFrequent(self, nums: List[int], k: int) -> List[int]: value = [] my_dict = dict(Counter(nums)) my_dict2 = dict(sorted(my_dict.items(), key=lambda item: item[1], reverse = True)) mlis = list(my_dict2.keys()) for i in range(k): value.append(mlis[i]) return value
@cakecup-r6gАй бұрын
whats the time and space complexity of you solution bro, thanks btw
@VineetKrGupta6 ай бұрын
I got my first job after following your neetcode 150, 2 years ago. now after the layoff i am here again learning the dsa.
@awesome_ashu2 жыл бұрын
We can optimize it more by storing the maxFrequency while creating the HashMap (which has the integer and their corresponding frequency). Then, the next iteration to get the required elements can start from this maxFrequency instead of N.
@wow_donnie2 жыл бұрын
I came up with this solution originally but really appreciated the thoughtful description of the linear solution! result = defaultdict(int) for num in nums: result[num] += 1 result = dict(sorted(result.items(), key=lambda item: item[1])) return list(result.keys())[-k:]
@SharmaTushar1-yt5 ай бұрын
You can also use count = Counter(list) This will count in itself. No need for a loop. Another day thanking Guido van Rossum for making my life easier.
@pinakadhara76502 жыл бұрын
Thanks for the video! I came up with the same solution except I assumed each element is "repeated unique number of times" from the problem statement - "It is guaranteed that the answer is unique.". So instead of looping over each lists, I just considered the first element.
@eulier13 ай бұрын
That's was a very interesting way to solve a specific real life problems, by counting and working with hash and array as a way to identify K most frequent elements. This can be useful for small to big business handling inventory or when you need to pack-up your stuff to travel.
@macro776Күн бұрын
You can solve it even more efficiently in only 2 lines by being a python quack, although I doubt an interviewer would be pleased with it: count = collections.Counter(nums) # Creates a frequency counter from nums directly return [item[0] for item in count.most_common(k)] # Uses counter's most_common method
@mohamedeltawab3 жыл бұрын
Your explanation is like art! Thank you!
@JaydenSWE77Ай бұрын
Solution is so smart. You taught me so much more about hashmap and the capacity of it. Thank you!
@kwakukusi40942 жыл бұрын
I got a similar question on my onsite interview with amazon (not the same question but same concept). I did not know bucket sort so I used the sorting method. The interviewer said there was a way of getting a linear time complexity and I did not know what to do .
@symbol7672 жыл бұрын
This is perfect, thank you bro, took me a while to understand this problem, gonna need to redo it without looking at the solution in a couple days. Thank you, liked and commented again to support
@randomystick2 жыл бұрын
for the return function, an alternate way is to use the extend() method in python: res = [ ] ptr = len(frequency)-1 while len(res)
@kestiv2429 Жыл бұрын
Result size will be wrong if len(frequency[-1]) > k I think
@vachannadupalli6133 Жыл бұрын
@@kestiv2429 The question guarantees that there is a unique solution. Hence every time we extend the result array, at some point it will(has to be) be equal to k. If it were not guaranteed, then you would be right.
@saifmohamed17763 жыл бұрын
i didn't see any body came up with this solution in the discussion on leetcode , all of the solutions were use heap or may be some of them use quick select ; so i was afraid that i analysis my algorithm wrong but after watching you i know that i was right about my solution .
@CarlJohnson-iv7sn2 жыл бұрын
Infact the top solution in the discuss is using bucket sort itself.
@netanelkaye301410 ай бұрын
People say you are supposed to learn enough to be able to figure out leetcode problems, as opposed to memorizing leetcode. Are we seriously supposed to have been figured this method out? This was so specific...
@edd48516 ай бұрын
When you encounter a similar problem next time, you will think , well, i already saw it somewhere. I can do this.
@netanelkaye30146 ай бұрын
@@edd4851 Really? How many leetcode problems are solved this way?
@_carrbgamingjr5 ай бұрын
@@netanelkaye3014 1😅
@wotizit5 ай бұрын
its best not to think about it lol
@beaglesnlove5803 ай бұрын
@@netanelkaye3014none of
@SharmaTushar1-yt5 ай бұрын
Also, you can do res += freq[i] in line 13. The problem description mentions the solution will be unique. So, we know that all the elements added if will either match k or will be lesser. So, no need to run a loop.
@yarnehermann2 жыл бұрын
I'm thinking you can just invert the frequencyMap to {frequency: list of values with that frequency} and then sort the keys in that inverted map. This sorting would be O(sqrt(n) log(sqrt(n))) (which is < O(n)) because there cannot be more than O(sqrt(n)) different frequencies (if each value has a different frequency, then n = O(c * (c+1) /2), with c being the number of distinct frequencies). Then it's just a matter of iterating over the reverse sorted keys and adding values to a resultArray until that array reaches length k lookupDict = defaultdict(int) for n in nums: lookupDict[n] += 1 inverseDict = defaultdict(list) for key, v in lookupDict.items(): inverseDict[v].append(key) sortedKeys = sorted(inverseDict.keys(), reverse = True) sortedKeysIndex = 0 res = [] while k > 0: values = inverseDict[sortedKeys[sortedKeysIndex]] if len(values) > k: res.extend(values[:k]) else: res.extend(values) k -= len(values) sortedKeysIndex += 1 return res
@pragnyatata491 Жыл бұрын
really love the approach taken, thank you
@gabrielfonseca1642Ай бұрын
This is still O(n) because of the for loop on line 2, but yeah it's slightly more efficient
@vdyb7452 жыл бұрын
I was wondering where you were going with the bucket. This is so clever !!! Brilliant !!
@arungowda2 жыл бұрын
We can do a little space optimization by having max(counts) size for bucket instead of nums.length
@LeetCodeSimplified Жыл бұрын
Good point!
@ARJUN-op2dh2 жыл бұрын
More simpler way from collections import Counter def dx(nums: list, k: int): x = Counter(nums).most_common()[:k] ls = [] for i,j in x: ls.append(i) return ls
@xrdevelopment13902 жыл бұрын
is it just me or after struggling on a particular part for a while.... then it hits!!!!! best feeling ever. NeetCode, I am following along every problem and have the confidence that I'll get my dream tech position. thank you, its the same feeling I had when I found out about khan academy in high school
@Milan-vi1bq2 жыл бұрын
we're both gonna get the dream job homie!
@atulkumar-bb7vi Жыл бұрын
Trust me bro, you are amazing explaining things. Thanks a lot for such content. Pls keep posting..
@il50832 жыл бұрын
The solution and thought process is genius! Can't come up with this optimal solution by myself, thanks a lot.
@devashishubale1565 Жыл бұрын
I was solving 692, and I got AC, I remembered this video came back to this. Thanks for such detailed videos.
@md-ayaz3 ай бұрын
One thing to note in python. Please do not intialize like this ( if you are ) bucket = [[]] * (len(nums) + 1) this references to the same list and your output will be wrong. Use the bucket = [[] for _ in range(len(nums)+ 1)] , as mentioned in the video.
@rohanaurangabadkar9516 ай бұрын
Best explanation this helped me in solving Top K Frequent Elements and Sort Characters By Frequency
@shreyaskaup2 жыл бұрын
i had actually thought of the 2nd array implementation you said with N array size.. but i didnt think on how I would extract the top K as you did by going backwards! you're a genius!
@YNA642 жыл бұрын
Holy this is so much clearer than the quick select one.... Thank you so much
@ChristopherElwell8 ай бұрын
But not constant space complexity
@numberonep54042 жыл бұрын
I love how your videos are always so damn clear :) ! Thanks alot Btw, here is a weird(?) quicksort version that beats 93%: def topKFrequent(self, nums: List[int], k: int) -> List[int]: count=list(Counter(nums).items()) def quick(l,r): pivot,p = count[r][1],l for i in range(l,r): if pivot>=count[i][1]: count[i], count[p] = count[p], count[i] p+=1 count[r], count[p] = count[p], count[r] if p>len(count)-k: return quick(l,p-1) if p=ind]
@NeetCode2 жыл бұрын
Nice!
@heathergray48802 жыл бұрын
Mine beats 98.62 time and 90 on space and is two lines long :)
@lucaslau83792 жыл бұрын
@@heathergray4880 would you share your code for learning please?
@syedzami-ul-haquenavid93922 жыл бұрын
The explanation was so amazing that I understood how to solve half way through the video!
@tszyinshirleycheung40403 жыл бұрын
I think the runtime of using heap is O(n log k), we need O(n) to construct the heap and remove an item cost O(log k) ?
@MrACrazyHobo3 жыл бұрын
Yes, this is even what the leetcode official answers says
@michaelchen92753 жыл бұрын
Isn't it O(log n) to remove from a heap with n elements? And we do that k times, so that makes O(k log n).
@theniknik09993 жыл бұрын
@@michaelchen9275 If we restrict the heap to be of size k (since we only care about k most frequent), at worst case we'll end up popping n elements. i.e. O(n log k)
@bundayyolayinka33522 жыл бұрын
My current status: Understands the Questions, Have an Idea of how to start (not how to finish), Watches just your drawing explanation, Realize what is missing, Writes the whole solution.
@anonymoustv86042 жыл бұрын
that's great man. Keep going
@pacomarmolejo349210 ай бұрын
keep grinding. You will get there
@tanmay1706111 күн бұрын
there is also the approach of using k-th order statistic to solve this problem. It does not require the assumption that the value of the array elements is bounded (like linear sorting algorithms require).
@geekydanish59902 жыл бұрын
class Solution: def topKFrequent(self, nums: List[int], k: int) -> List[int]: _map = {} res = [] for num in nums: _map[num] = 1 + _map.get(num,0) heap = [(val,key) for key,val in _map.items()] for val,key in (sorted(heap,reverse=True)[0:k]): res.append(key) return res
@nishanttripathy82752 жыл бұрын
For the heap the time complexity should be n.Log(k) since the max size of the heap can only be k and n is the number of elements
@firasyousfi2269 Жыл бұрын
Nope, if you are using a maxHeap it will be k log n. Because for that you need to heapify the whole thing first so n elements would be in the heap. Then you would pop 'k' times from the heap of size 'n'. So O(k log n). This is Valid if you use a maxHeap!!! If you are using a minHeap then you would be correct, then the heap would have a max size of k as you said. And you would loop n times and push then poll when size reaches k.
@ShreksSpliff5 ай бұрын
Watching this after attempting on NeetCode is soooo good!
@WinnerSingh Жыл бұрын
Well what mistake I did is - I watched other python tutorials What good thing happen is - I am watching your videos But you are geniuses you explain well but I have to watch two times every video to understand correctly. Thank you
@sangramshinde22112 жыл бұрын
nick white, kevin, neetcode best guys to get the perfect explanation...
@tanayshah2753 жыл бұрын
Made it simple but efficient as always!
@leofastov92054 ай бұрын
I'd like to suggest a minor improvement: for n in nums: count[n] = 1 + count.get(n, 0) if count.get(n, 0) > max_val: max_val = count.get(n, 0) freq = [[] for i in range(max_val + 1)] The max_val variable is used to track the maximum frequency instead of using the length of nums. This can potentially save some space if the maximum frequency is significantly less than the length of nums. Addition of max_val adds a small const time overhead
@BEEFnCHEESE442 жыл бұрын
Thank you so much, your explanations are so easy to understand, I would be lost without you
@leetcodemermaid98042 жыл бұрын
For the first heap solution, you can do a total complexity of n Log(k). Instead of heapify the whole dictionary ,you can heap push and heap pop when you go through the dictionary. When len(heap) > k, heap pop.
@MehmetDemir-xi3yy8 ай бұрын
nlogk generally bigger than klogn k=1200 and n=1500 nlogk ≈1500×3.0792≈4618.8 klogn=1200×log1500 ≈ 3811.2
@venkatshiva82754 ай бұрын
First of all thank you very much @neetCode for this amazing explanation. Anyone has suggestions or improvements on the below solution?? class Solution { topKFrequent(nums, k) { let countObj = {}; const resArr = []; let ctr = nums.length; for(const i of nums){ countObj[i] = (countObj[i] || 0) + 1; } while(ctr > 0){ for(const key in countObj){ if(countObj[key] == ctr && resArr.length < k){ resSet.push(key); } } if(resArr.length == k){ break; } ctr--; } return resArr; } }
@34535fff11 ай бұрын
Man I could not do it myself because I didn't understand problem clearly, after 50 seconds of the video I understand and did it with ease, thanks a lot. Now I am going to watch rest of the video to learn optimal solution)
@VarunMittal-viralmutant2 жыл бұрын
The final array that you create may have a lot of holes. Say there are 1000 elements, but consisting of only 1's and 2's, then the list will be full of holes. It can be further optimized by keeping a 'max_freq' variable which will provide an upper bound on the size of the array. This max_freq can be updated while creating the hash-map.
@mearaftadewos85082 жыл бұрын
or may be this may not be the most efficient way to do this for all kinds of inputs like the one you said and unsorted numbers. It doesn't give the top frequent one's. Dictionary with maxheap is the one that can handle all possible inputs.
@denshaSai2 жыл бұрын
Got this question for google, what to do then if input is streaming (like a log)? guess we keep updating the count (histogram), and rebuild the freq array everytime?
@avadheshsingh425511 ай бұрын
without knowing what is bucket sort I was only able to come with the hashmap sorting solution thanks mate for the o(n) soln.. great explanation
@rakshitkumar11412 жыл бұрын
I think your solution is O(n2). because in last part you performed n operations inside n. for i in range(len(freq) -1, 0, -1): ==== O(n) for n in freq[i]: ==== O(n)
@freddy56383 жыл бұрын
My man! I've spent HOURS watching you. FYI you can do the counter with collections, and save few lines of implementation
@yossarian29092 жыл бұрын
How is that?? Can you pls share
@hamzasayyid81522 жыл бұрын
@@yossarian2909 from collections import Counter, then Counter(nums) gives the frequency dict
@balavikashkandukuri61392 жыл бұрын
@@hamzasayyid8152 continue the code
@dharmatejabandaru33443 жыл бұрын
Such an awesome explanation and solution. Thanks, Man! Love it.
@HrzybsАй бұрын
Instead of using a second loop while adding to the result I just checked if the values in the array exist like that for i in range(len(tables)-1,0,-1): if (tables[i]): result.extend(tables[i]) if (len(result)>=k): return result for me it's easier to understand this way
@mgst4699003 Жыл бұрын
Thank you man! Blessed to have you!
@MistaT442 жыл бұрын
This solution blew my mind! excellent video as always :)
@normanfung7124 Жыл бұрын
Simpler approach: def topKFrequent_simplest(nums: List[int], k: int) -> List[int]: count = {} # key: n, value: count of n for n in nums: count[n] = 1 + count.get(n, 0) count = [(k, v) for k, v in count.items()] count.sort(key=lambda entry : entry[1], reverse=True ) return [ entry[0] for entry in count[:k]]
@xinyiwu28373 жыл бұрын
Man you light up my leetcode
@prithvirajchavan91862 жыл бұрын
So basically the map of frequency to values can actually be of size O(n*n)? The first 'n' is due to worst case frequency being 1 to n and the second 'n' is because at most 'n' numbers can have the same frequency of 1. I kinda understand how its not really O(n*n) and a bit less than that as the duplicates are being consumed into a single key, but its still more than O(n) right? Another observation: The only possible values of frequency that have a value attached to them are the subsets that add up to N. In the given example, 100 occurs once, 2 occurs twice and 1 occurs thrice, so sum of frequencies is actually 1+2+3=6 which is N in this case. So the worst case space complexity is actually O(n*length of longest subset of frequencies that sum to N). Dont really know how I ended up with a Subset Sum problem just because i couldnt justify the O(n) space complexity lol. Any clarifications are appreciated :D
@tedtran78552 жыл бұрын
Clever solution! I came up with the nlogn solution immediately and thought the problem was over since the Leetcode page only wanted that. Then I watched your video and I was shook when you said there was an O(N) solution haha.
@StfuSiriusly2 жыл бұрын
leetcode page says to find a solution that is BETTER than n log n
@javidabderezaei36322 жыл бұрын
Heap solution (faster than 95% of solutions on leetcode): dic = {} for i in nums: if i not in dic.keys(): dic[i] = 1 else: dic[i] += 1 heaped = [] for key in dic: heaped.append([-dic[key], key]) heapq.heapify(heaped) res = [] for i in range(k): freq, x = heapq.heappop(heaped) res.append(x) return res
@ashadahmad651 Жыл бұрын
Cannot believe I figured this on my own, definitely took some time but I was able to figure it out on my own.
@yxngboypolo3 ай бұрын
11:42 you could also use `for i in reversed(freq):` and modify the code as needed
@alexanderk5399 Жыл бұрын
The best explanation I've seen! Thank you so much man!
@anujapuranik2000 Жыл бұрын
This is amazing explanation. Thank you for sharing this video.. Learnt something new today!
@tomskrovan6622 Жыл бұрын
I believe the length of the frequency/bucket array could be lower than len(nums) + 1 because of the rule that the # of distinct elements >= k. This tells us that there will be at least k distinct elems and since each one must have at least one frequency, no single number could occupy all len(nums) spots (unless k is 1). Therefore I think it could be further optimized (albeit minimally lol) to: freq = [ [ ] for i in range( (len(nums) + 1) - (k - 1) ) ]
@ichigokurosaki776210 ай бұрын
Could you explain how the for loop works within the array, I didn't understand that part? Freq=[[] for i in range(Len(nums)+1)]
@AJ-ju7tl4 ай бұрын
there is a mistake at the end, heap solution is O(N logK ) not O(K logN)!!! otherwise this is a very good explanation, thanks!
@cgqqqq3 жыл бұрын
fantastic explanation! the only issue I think is the first for loop should be for i in range(len(freq) - 1, -1, -1)
@Avuvos3 жыл бұрын
Not needed because that last spot is for values who appear 0 times in the array, so it’d be an emtpy list either way
@srinadhp3 жыл бұрын
Got the same question in one of the phone screens. I came up with map and heap approach. The interviewer asked for an optimization for memory. And, I could not think of any other solution. It costed me next round unfortunately. Only if I notice your solution!!!! :-( Again! Great explanation and "neat" solution!!
@harigovind113 жыл бұрын
This solution is also not memory optimised. Using "min" heap instead of max heap with size k would be memory optimised.
@kobeissi7212 жыл бұрын
@@harigovind11 Wouldn't it still be O(N) since you still need to add them to a map to store the frequencies?
@sampatkalyan31032 жыл бұрын
@@harigovind11 "Using "min" heap instead of max heap with size k would be memory optimised. " can you explain how ?
@jugsma66767 ай бұрын
The simplest method is: def topKFrequent(self, nums: List[int], k: int) -> List[int]: cache = {} for c in nums: if c not in cache: cache[c] = 1 else: cache[c] = cache[c] + 1 cache = dict(sorted(cache.items(), key=lambda i:i[1], reverse=True)) return list(cache.keys())[:k] O(nlogn)
@actiondelucas4959 Жыл бұрын
Mentioned maxheap solution: def topKFrequent(self, nums: List[int], k: int) -> List[int]: # count the frequency frequency = Counter(nums) # convert frequency to a maxheap of tuples maxHeap = [(-count, num) for num, count in frequency.items()] # return top k elements return [heapq.heappop(maxHeap)[1] for _ in range(k)]
@tarunkathuria27058 ай бұрын
You don't need bucket sort for linear time. You can just store the number, freq. pairs and run quickselect.
@mehmetnadi89302 жыл бұрын
I'm speachless! thank you, NeatCode!
@countdooku6813 жыл бұрын
Excellent solution, thank you!
@theornament9 ай бұрын
I did the solution with priority queue and hashmap and it seemed to have better time complexity and space efficiency than using bucketsort. I feel like this is tricky because, when we are solutions for problems, we start analyzing which data structure we are going to use, its time complexity, etc. based on how those data structures are regularly implemented. The thing is, algorithms and built in functions in languages have improved drastically that they take less time than what theoretically they should take. It's tricky but are those are things that we should consider as well?
@lonen3rd Жыл бұрын
Awesome solutions as always. Worked on an alternative solution using a PriorityQueue. from queue import PriorityQueue def topKFrequent_2(nums, k): if not nums: return [] freqs = {num:nums.count(num) for num in nums} q = PriorityQueue() for num, count in freqs.items(): q.put((count, num)) qsize = q.qsize() while qsize > k: q.get() qsize -= 1 res = [] while q.qsize() > 0: vv = q.get() # will return (count, num) res.append(vv[1]) return res
@hiota453 ай бұрын
I used a dictionary and pair of while loops in python. Basically, while the nums list > 0, I would .pop the 0th number off the list and check to see if the number was in the dict as a key. If it was, add one to the value for that key. If not add it to dict as a key with a value of one. When the nums list was exhausted, another while loop for k > 0. Use the python max function to give a variable equal to the key with the highest value. Add that key to the results list, set the key value to 0, and -1 on k. I'm a novice though so this may be suboptimal?
@Nohope__ Жыл бұрын
or alternatively sort the count table by values, and then return first k elements : # create hash_table where num in nums is ke # increment value for each key repeatation table = dict() for n in nums: if n in table: table[n] += 1 else: table[n] = 1 # sort by values table = sorted(table.items(), key=lambda item: item[1], reverse=True) # create a list answer = list() # store to answers for item in table[:k]: answer.append(item[0]) return answer
@basedasuka Жыл бұрын
ur solution is much faster for me, thank u
@akarsan91213 ай бұрын
questions: lets assume we have array [1,2,2,3,3,4,4,4] and k = 2. Then for first most frequent we will have 4 but what about the 2nd most frequent element? cuz count of both 2,3 is 2 so how do we decide which value to insert into our resulting list??? Please help ps: "The test cases are generated such that the answer is always unique." is this statement accounting for that edge case?
@gabrielfonseca1642Ай бұрын
Yes this wouldn't be included in the test cases because there are two solutions (2, 4) and (3, 4). However note that if k = 3, then (2, 3, 4) and (3, 2, 4) are both solutions, which is why the problem says to give the answer in any order
@racerx46848 ай бұрын
Thanks Neet! I burned my brain cells trying to come up on my own. This helped.
@ronakpatel7911 Жыл бұрын
What I don't quite understand is that when I implemented this solution, the speed and memory is not as efficient compared to my initial solution in ``` class Solution: def topKFrequent(self, nums: List[int], k: int) -> List[int]: count = {} for num in nums: count[num] = 1 + count.get(num, 0) res = sorted(count, key = count.get, reverse = True) return res[:k] ``` Even though using sorted() here causing it to be n log n... Can someone explain why this one is appearing to be much quicker than the solution in the video?
@pruthvipegasus7 ай бұрын
sorted() uses quick sort which has O(n log n) time complexity in the python interpreter.
@shawnlin98732 жыл бұрын
I used a dict to maintain the num->occurance pair for all items. Barely got the AC but the sorting part threw me off...had to use a lambda function to sort the dict by value. The optimal solution is a lot more subtle. Great content, very informative and well explained.
@lemonke81322 жыл бұрын
i did the exact same thing lmao
@haardpatel424210 ай бұрын
using the two loops in the last actually increases the time complexity.
@amrojjeh7 ай бұрын
In this case, a heap sort might be more optimal. Even though your code is O(n), it's making a ton of allocations, which may make it practically slower in some cases.
@KardboardCode11 ай бұрын
Hey everyone, I have one question. Why is this solution considered O(n) where n is the size of the nums array? Why are we not looking at the worst case complexity for lines 11-16 at 12:52 If all items are unique Line 12: i will iterate over the range (0 , n) //Size of freq is n+1 Line 13: if all items inside nums are unique, every item will be present at the first index This will lead to looping through the entire length of the array n => this gives us O(n^2)
@aaronpuah9183 жыл бұрын
Fantastic explanation, appreciate it!
@mohamadilhamramadhan6354 Жыл бұрын
Damn. I solve this problem for hours and a lot of code. It turns out could be this simple. Thankss, I learn something new. THE BUCKET SORT 😇
@akashp48632 жыл бұрын
is log(n) better solution than nlog(n) and log(n)?.... can you create a video on how to find big o and which one is better than which? i know there are many videos in youtube, but yours will be the best
@mucle6 Жыл бұрын
I was thinking bucket sort with quick-select. I've never seen a double bucket sort!
@archmad Жыл бұрын
you dont really need the to loop the line 13, just get the length of freq[i] and return if the res length is equal or greater than k
@Yougottacryforthis Жыл бұрын
Pretty sure you can use select and partition to do this within O(n)