Least Number of Unique Integers after K Removal - Leetcode 1481 - Python

  Рет қаралды 9,925

NeetCodeIO

NeetCodeIO

Күн бұрын

🚀 neetcode.io/ - A better way to prepare for Coding Interviews
🧑‍💼 LinkedIn: / navdeep-singh-3aaa14161
🐦 Twitter: / neetcode1
⭐ BLIND-75 PLAYLIST: • Two Sum - Leetcode 1 -...
Problem Link: leetcode.com/problems/least-n...
0:00 - Read the problem
0:22 - Drawing Explanation 1
6:33 - Coding Explanation 1
8:56 - Drawing Explanation 2
13:53 - Coding Explanation 2
leetcode 1481
#neetcode #leetcode #python

Пікірлер: 14
@dumbfailurekms
@dumbfailurekms 4 ай бұрын
I used the bucket sort approach you taught us in Top K frequent elements. I'm going to analyze the time complexity of mine then watch your video but thanks for being such a great teacher. I learned (and will continue to learn) so much from you. I used to be so clueless. Thank youu
@barnetthan9391
@barnetthan9391 4 ай бұрын
me too!
@akshayiithyd
@akshayiithyd 4 ай бұрын
I love the fact that even if I am able to solve the question, I almost always get something useful from Neetcode's solution, somedays It is the optimized approach, and on the other it is better code quality.
@KhyatiSatija
@KhyatiSatija 4 ай бұрын
so impressive, thanks a lot sir
@armandomendivil1117
@armandomendivil1117 4 ай бұрын
I solved it using bucket sort too!!
@poketopa1234
@poketopa1234 3 ай бұрын
Great video, thank you
@kirillzlobin7135
@kirillzlobin7135 4 ай бұрын
Amazing
@skguravana703
@skguravana703 4 ай бұрын
Today I am happy that I have solved this by myself🎉
@Aditya_qwertyu
@Aditya_qwertyu 4 ай бұрын
congrarts
@Moch117
@Moch117 4 ай бұрын
Seemed like a greedy and sorting problem
@marthimallikarjun5427
@marthimallikarjun5427 4 ай бұрын
Can someone explain the logical mistake in my code class Solution: def findLeastNumOfUniqueInts(self, arr: List[int], k: int) -> int: count = Counter(arr) arr.sort(key=lambda x: count[x], reverse=True) n = len(arr) return len(set(arr[:n - k])) please...!!
@jts3077
@jts3077 4 ай бұрын
add arr.sort() before sorting by the count. This is because even though you sorted by count, the numbers with the same count can appear in any order. For instance, [1,1,2,2] could get sorted to [1,2,1,2] because 1 and 2 have the same count.
@marthimallikarjun5427
@marthimallikarjun5427 4 ай бұрын
Thanks bro! U saved my streak
@Sam-nc6xt
@Sam-nc6xt 4 ай бұрын
You could also do this - arr.sort(key=lambda x: (count[x], x), reverse=True) It will first sort by freq and then by value which will fix the order as well
Survival skills: A great idea with duct tape #survival #lifehacks #camping
00:27
КАРМАНЧИК 2 СЕЗОН 7 СЕРИЯ ФИНАЛ
21:37
Inter Production
Рет қаралды 492 М.
ROCK PAPER SCISSOR! (55 MLN SUBS!) feat @PANDAGIRLOFFICIAL #shorts
00:31
Math Klasse - JAVA 2024 Tutorial #16
8:21
Diplinative
Рет қаралды 26
Find the value of 𝑥 - Algebra Can be Fun
11:05
Math U
Рет қаралды 5
How Fast Can You Throw a Car in Poly Bridge 3?
15:06
Reid Captain
Рет қаралды 36 М.
Classes and Objects with Python - Part 1 (Python Tutorial #9)
11:36
Partition Array for Maximum Sum - Leetcode 1043 - Python
27:33
NeetCodeIO
Рет қаралды 16 М.
Survival skills: A great idea with duct tape #survival #lifehacks #camping
00:27