HashMaps in Python Tutorial - Data Structures for Coding Interviews

  Рет қаралды 79,976

Codebagel

Codebagel

Күн бұрын

Data structures are one of the most important things to prepare for coding interviews. HashMaps are one of the most essential data structures to know, and today we'll be learning how they work, what their benefits are, and solving a practice problem together using Python.
📘 Chapters
0:00 - Intro
0:43 - Explaining HashMaps
6:47 - Example Coding Problem
🔗 Resources
LeetCode Problem: leetcode.com/problems/group-a...
🎵 Music
Brontosaurus - Dylan Sitts
Deadlines - Dylan Sitts
Pick Up Your Phone Please - baegel
Slapperoni Pizza - Jobii
#coding #softwareengineer #python

Пікірлер: 111
@Codebagel
@Codebagel 4 ай бұрын
After a year hiatus (sorry, got busy with work!) this series is continuing! Check the next video out here: kzbin.info/www/bejne/bZi6d4V3Zbtjhac
@danyahsan3958
@danyahsan3958 Ай бұрын
Please moreee nd in java
@alanyates6377
@alanyates6377 Ай бұрын
Thanks bro, eagerly waiting for your content.
@NeetCode
@NeetCode Жыл бұрын
Great stuff! Super underrated channel (but not for long i bet =) )
@Codebagel
@Codebagel Жыл бұрын
NO WAY YOU COMMENTED! Thank you so much, you’re actually the reason I was inspired to start this channel so I really appreciate you commenting! PS: everyone go sub to this man, single-handedly helped me get a job :)
@eternalpanic1
@eternalpanic1 Жыл бұрын
Yooo NeetCode is here yay!!!!
@hamoodhabibi7026
@hamoodhabibi7026 Жыл бұрын
!!! Ur both great 👍
@kvelez
@kvelez 6 ай бұрын
Good chanel
@mohammadkaif2534
@mohammadkaif2534 5 ай бұрын
bhai saxx tha aur bnao
@samm4258
@samm4258 Жыл бұрын
After 4 days of struggling, this video finally gave me the breakthrough to understand hash maps in my self taught journey. Concise and coherent, this is the best tutorial video I've seen so far!
@sidandhawa
@sidandhawa Жыл бұрын
The explanation on this was so clear. Absolutely brilliant. You have gained a new subscriber and I can't wait to see this channel grow the way it deserves to!
@sugaslate14
@sugaslate14 8 ай бұрын
I love the fact you go through an actual problem at the end. That made it “click” for me. New sub here, please keep it coming!
@realbutters
@realbutters Жыл бұрын
Great video. It’s hard to strike the balance between keeping things concise while also exploring them fully, but you did an incredible job of it here.
@kaiser5026
@kaiser5026 Жыл бұрын
Not even half way through this video and I just want to give props to how concise the information is. I hope to see some machine learning content soon :)
@panwilku6146
@panwilku6146 2 ай бұрын
I watched this video like 3 times over a month ago, and I was struggling with understanding the logic even though you tried so hard to explain it. Now, after some practice, I watched this video once again and I can say I understand the code perfectly now. I just wrote the code before seeing the solution. Thank you for yours videos, one of the best channels out there!
@futhedude4848
@futhedude4848 9 ай бұрын
great hash map explaination, plus it have leetcode example and explaination for the answer in detail at the end of the video which is really great.
@Salmo_103
@Salmo_103 5 ай бұрын
The best explanation I found about this topic yet! Thank you so much, God bless you
@misslaurenbecca
@misslaurenbecca 2 ай бұрын
Great video. After I watched your video, I tried to code it myself without looking and tried to do it without defaultdict(), just adding my first val as a list and then appending to the list for the following ones. After I had done that, I converted it to be like yours. Besides the obvious benefits, something else I realized was doing it your way removed the need to check if a key was already in the dictionary. In my version, I had to make that check, otherwise, I would be attempting to append to a list that hadn't been created yet.
@bogdan8204
@bogdan8204 4 ай бұрын
this is first video, but i'm already excitement about learn next algoritm in this series. The best.
@Codebagel
@Codebagel 4 ай бұрын
Just uploaded the newest one after a long break!
@blackshadowproductions5144
@blackshadowproductions5144 3 ай бұрын
Your explanation is simply the best one I found, thank you so much man!
@auzee4925
@auzee4925 4 ай бұрын
city_map = {} cities = ["Calgary", "Vancouver","Toronto"] city_map["Canada"]= cities # This works so much better
@hopeeternal7470
@hopeeternal7470 3 ай бұрын
Yeah I'm not sure why he did the extra step. Like he took two minutes to look up w3school article on dictionaries and made a video out of it.
@vantuantran225
@vantuantran225 Жыл бұрын
That's incredible, I understand it right now. Thanks you, it really simple explaination and easy to understand
@drstrangeluv1680
@drstrangeluv1680 Ай бұрын
The video was great! However, if you use the SORT method, the best time complexity you would get is O(nlogn). If you want to solve it in O(n), a clever approach is to first check every word and create a key value pair of every letter. For example, you go through the first word and get 3 'a', 2 't' and 4 'e'. Now you save this in a dict { 'a':3,' t':2, 'e':4 }. Then, you go through every other word and do the same. If you find any other word with 3 'a', 2 't' and 4 'e', you have found an anagram. So just comparing the dicts at the end would give you the anagrams. You would go through the list only once so you have time complexity O(n). P.S. you should first check if two words are the same length. If not, you can automatically cancel them as anagrams.
@dhirajsahu2026
@dhirajsahu2026 10 ай бұрын
Great Work! Nice Explanation Dude. Really helpful
@jaganmayeesahoo4210
@jaganmayeesahoo4210 5 ай бұрын
wow, still wrapping my head, I am new to it, but its very concise and all good content, man.
@alejandroolaria
@alejandroolaria Жыл бұрын
This is awesome! thank you very much for making this video!
@spiritual5750
@spiritual5750 Жыл бұрын
Seriously man, i could see your hard work through this video.
@Codebagel
@Codebagel Жыл бұрын
Thank you so much! That means a lot :)
@InDaHoops
@InDaHoops 4 ай бұрын
So, ive been programming in python for a little over a year, and i've always seen those hashmap memes, and how they're the solution to everything, but the name Hashmap just seems intimidating, so i never bothered thinking about using one or looking up what it is...until this day, when i realized its just a dictionary, and I've been using them all the time lol Great video, keep it up!
@BAMBAMBAMBAMBAMval
@BAMBAMBAMBAMBAMval Жыл бұрын
This is what should be ranked #1 when searching for "python hashmap"
@Codebagel
@Codebagel Жыл бұрын
Thank you!! I’ll be making the full series soon so don’t worry!
@aninditabatra3810
@aninditabatra3810 8 ай бұрын
great content and will continue to watch in the future :)
@AdityaRaj-xm6oi
@AdityaRaj-xm6oi 8 ай бұрын
This was a really amazing learning video, I like your style of teaching that first of all you made the concept clear and then a question to make it more clear. Btw I was here because I didn't get clarity with the neetcode channel of the same question. so I request you to upload these types of videos more thanks 🙏
@Codebagel
@Codebagel 8 ай бұрын
Glad you enjoyed it! I'll see what I can do!
@mrzhambyl
@mrzhambyl Жыл бұрын
IMO, best explanation on YT
@jamalghatit
@jamalghatit 8 ай бұрын
Great job! thanks for your video
@bhavybhatt4571
@bhavybhatt4571 4 ай бұрын
hey bro thank you so much don't focus on views just post and you'll make historical content as your vids are easy to understand because of the analogies you use thank you so much buddy lots of love from india
@abhisheksharma10600
@abhisheksharma10600 2 ай бұрын
Please complete this playlist, its really helpful. Btw i just subscribed so keep up the work please.
@saatvik1
@saatvik1 3 ай бұрын
Lovely Vid!! Great Work
@CarlosLopez-fg3fl
@CarlosLopez-fg3fl 2 ай бұрын
You're great, good explanations
@denatolix
@denatolix 10 ай бұрын
Thanks! You really help me! Wish you 1m subs and more
@servantofthelord8147
@servantofthelord8147 9 ай бұрын
Wow. It makes sense now. It finally makes sense. Thank you!
@Codebagel
@Codebagel 8 ай бұрын
You're welcome! I'll finish up the series in the coming weeks!
@willmccauley22
@willmccauley22 7 ай бұрын
Appreciate the video, well explained 👍
@md.mahbubanamtanim9081
@md.mahbubanamtanim9081 17 күн бұрын
Excellent!!
@zohayer.mehtab
@zohayer.mehtab 5 ай бұрын
Thank you so much!
@nalininadupalli3131
@nalininadupalli3131 Жыл бұрын
Hello, thanks for a great video! Can you also please explain if Hash Tables and Hash Maps are the same (in general) ? If different, how does python dictionary Data structure handle them? thanks so much in advance !
@MysteryIlusion
@MysteryIlusion 9 ай бұрын
Can I just return anagram_map.values() instead of the result list? I'm not sure if there's some kind of issue later on but is it faster to do it by returning values since it is already in list form rather than adding 1 more for loop?
@chamarr
@chamarr Жыл бұрын
Goat vid codebagel, do more implementation vids!!!
@Codebagel
@Codebagel Жыл бұрын
Thanks so much! I’ll keep on making them!
@samstar1290
@samstar1290 8 ай бұрын
Please make videos often , stuff is great and smooth
@Codebagel
@Codebagel 8 ай бұрын
Have one coming out tomorrow!
@ManojMallisetti
@ManojMallisetti 29 күн бұрын
where did you created the module collection
@vazp3
@vazp3 16 күн бұрын
great video :)
@yoman6367
@yoman6367 Ай бұрын
can we use long long type and do bit-masking?
@brianc.3609
@brianc.3609 10 ай бұрын
love this video!!!!!
@shortandshine8279
@shortandshine8279 8 ай бұрын
Awesome, keep it up
@dsa0decoded
@dsa0decoded 10 ай бұрын
Great Explanation you should make more videos
@Codebagel
@Codebagel 8 ай бұрын
Thank you! I plan on doing it a lot more frequently over the coming months!
@krishnapathak9362
@krishnapathak9362 2 ай бұрын
Hey codebagel i request you to please upload complete dsa playlist using c++ and loved your amazing content
@livelikeawarrior9180
@livelikeawarrior9180 9 ай бұрын
Damn, that's a very good video ...
@vellankiindeevar5530
@vellankiindeevar5530 Жыл бұрын
bro do more vids about all dsa pls , this vid is really good
@KanjiBBB
@KanjiBBB 10 ай бұрын
ngl ur actaully a good teacher
@manickamm2671
@manickamm2671 8 ай бұрын
Great channel
@pauolive7239
@pauolive7239 Жыл бұрын
But isn't sorting each of the strings inside the loop making the time complexity O(n * nlogn)?
@ashraf_isb
@ashraf_isb 2 ай бұрын
thank you
@francois-xaviermenage4531
@francois-xaviermenage4531 3 ай бұрын
Are hash maps and hash tables really the same?
@bogdan8204
@bogdan8204 4 ай бұрын
the best ....
@mansikumari4954
@mansikumari4954 7 ай бұрын
Simply Wow - from a noob!!
@ooogabooga5111
@ooogabooga5111 4 ай бұрын
sorting has its time complexity right, how is this optimal? who decides that?
@ooogabooga5111
@ooogabooga5111 4 ай бұрын
how simple, i didn't it was this simple to think. Find two numbers which gives the sum 10 from a list of number lets says [ 1, -3, 4, 6 , 9 ]. So here I would say for 1 the number is 9, -3 its 13 so on. So essentially I created a dictionary (hash map) with key as the result of 10-1, so when I want to check for the next number is the one, i can just check arr[9] and if its present then I have the first solution. Damn.. To make it even more simple, you take your question process it for every element in the array in a way that the dictionary benifits from the result you generate. Ig thats hashmap, its just making dictionary. In that logic an array is a hashmap where the key is already defined. so its O(1) from start, but for hashmaps sinse you need to check every element to create a hashmap the the program is O(n) or more as it depends on question but once the hashmap is created the order its exec is O(1)
@notmimul
@notmimul 2 ай бұрын
for the results, you could just use result = list(anagram_map.values()) correct me if this is not the correct way. tq
@speedoi-bh7kg
@speedoi-bh7kg 9 ай бұрын
nice job keep going =)
@Codebagel
@Codebagel 8 ай бұрын
Thank you!
@L00p69
@L00p69 Ай бұрын
thanks WholeHeartedLy !!
@futhedude4848
@futhedude4848 9 ай бұрын
Man, this channel only have 19 videos at this time. I wish you could do more about algorithms and data structure.
@Codebagel
@Codebagel 8 ай бұрын
Been getting lots of positive feedback on it, so I'll get back to working on the series in the coming weeks!
@futhedude4848
@futhedude4848 8 ай бұрын
@@Codebagel thanks. i'm waiting for it.
@Codebagel
@Codebagel 4 ай бұрын
@@futhedude4848just uploaded, took a lot longer than I expected but it’s out now!
@futhedude4848
@futhedude4848 4 ай бұрын
@@Codebagel thanks, i'll check it
@coolsidshant297
@coolsidshant297 Жыл бұрын
Your content is way better than any paid one ,but you seriously need to do marketing ,make some content related to india and your channel will get some instant boost , make a video on "Top 10 common python algorithms asked by Maang in India" ,btw love from India
@Codebagel
@Codebagel Жыл бұрын
Thank you so much! I have a bit of a long-term plan in mind regarding this, I’ll definitely add that video to the list though! :)
@Locus616
@Locus616 Ай бұрын
wao wao wao
@sak.4001
@sak.4001 5 ай бұрын
underrated
@freecontent2438
@freecontent2438 11 ай бұрын
Dammm🎉
@Bond00.7
@Bond00.7 11 ай бұрын
Bro why didnt you continued this series 😢 plz tell us if u moved to another channel we need you
@markopancic6060
@markopancic6060 Жыл бұрын
For the result you should have just called .values no?
@TimurKupaev
@TimurKupaev Ай бұрын
I don’t think you can use import for the most of the interviews
@prao2tapper
@prao2tapper 7 ай бұрын
why did such a small code at the end take such a long time for me to understand
@user-vn2bg9ch8r
@user-vn2bg9ch8r 8 ай бұрын
dude like wtf, dthe moment you said city_map = dict() i was like wtf, i've be working with hashmaps for the past 6 months and i had no clue
@pixiepastels1070
@pixiepastels1070 4 ай бұрын
why do another for loop why not just return anagram_map.values() ? it already returns a list and the values are in a list so its already a list of lists
@xa6859
@xa6859 3 ай бұрын
Because of the `defaultdict(list)` => "TypeError: 'list' object is not callable". You will need `list(anagram_map.values())`
@kadspy
@kadspy 6 ай бұрын
Dude, you have used sorted inside a loop, isn't it increases a time complexity.. Here, you are claiming O(n) but i think its greater than that because sorting function of python also taking some time complexity based on "n".
@lahoussinezeggwagh608
@lahoussinezeggwagh608 Жыл бұрын
Please dsa in cpp
@Codebagel
@Codebagel Жыл бұрын
Will do in the near future!
@rayaqin
@rayaqin 2 ай бұрын
using the equal sign to denote a key -> value connection is not a good choice imo
@SashoSuper
@SashoSuper 2 ай бұрын
And I had to search in Japanese to find the video, even better.
@Locus616
@Locus616 Ай бұрын
you make good coffee wao wao wao wao
@dongyoblee2668
@dongyoblee2668 2 ай бұрын
Didn't really explain how hashmap work and just stated it's outside of the scope.
@sheryarbaloch67
@sheryarbaloch67 2 ай бұрын
Kinda felt happy to see Pakistan in the example, i don't know why😂
@angelicking2890
@angelicking2890 Жыл бұрын
Why the funny names in programming? This always happens whenever I try to resolve a problem. Why can't they just say it how it is ? I was intimidating hearing a crazy word like HashMaps only to find out I've been using them the whole time, dictionaries. Same goes for relational databases. I've been using them the whole time but because I didn't know what the interviewer meant by relational, I messed it up and she gave me an eyeball like I was a fraud. I still remember the "oooOOk Kaaaay". Just say , "you know the database with manytomanyfield or onetoonefield?" instead of these nonsensical words. Talk practical not theory. Idiots.. Sorry for the rant, it's just these funny names can trip up people.
@gy7230
@gy7230 9 ай бұрын
Amazing Man, you and @Neetcode are the best channels for learning python
@Codebagel
@Codebagel 8 ай бұрын
Thank you for the kind words! I'll finish up the series in the coming weeks!
@kvelez
@kvelez 6 ай бұрын
**Keep uploading more LeetCode, NeetCode, DataStructures and Algos. cities = ["Calgary", "Vancouver", "Toronto"] city_map = {"Canada":[]} city_map.update({"Canada":cities}) print(city_map) ============================ from collections import defaultdict class Anagram: def group_anagrams(self, strs): anagram_map = defaultdict(list) for s in strs: anagram_map[tuple(sorted(s))].append(s) return list(anagram_map.values()) anagrams = Anagram() print(anagrams.group_anagrams(["eat", "tea", "tan", "ate", "nat", "bat"]))
@xa6859
@xa6859 3 ай бұрын
I like the `return list(anagram_map.values())` instead of doing a second loop.
@labs2612
@labs2612 4 ай бұрын
You're amazing thank you so much 😭🩷
Top 7 Data Structures for Interviews Explained SIMPLY
13:02
Codebagel
Рет қаралды 105 М.
Big-O Notation - For Coding Interviews
20:38
NeetCode
Рет қаралды 396 М.
Can You Draw The PERFECT Circle?
00:57
Stokes Twins
Рет қаралды 91 МЛН
Chips evolution !! 😔😔
00:23
Tibo InShape
Рет қаралды 41 МЛН
顔面水槽がブサイク過ぎるwwwww
00:58
はじめしゃちょー(hajime)
Рет қаралды 124 МЛН
5 Good Python Habits
17:35
Indently
Рет қаралды 333 М.
Map and HashMap in Java - Full Tutorial
10:10
Coding with John
Рет қаралды 528 М.
I Solved 1583 Leetcode Questions  Here's What I Learned
20:37
ThePrimeTime
Рет қаралды 498 М.
Hash Tables and Hash Functions
13:56
Computer Science
Рет қаралды 1,5 МЛН
Top 7 Algorithms for Coding Interviews Explained SIMPLY
21:22
Codebagel
Рет қаралды 264 М.
Learn Hash Tables in 13 minutes #️⃣
13:26
Bro Code
Рет қаралды 307 М.
5 Useful Dunder Methods In Python
16:10
Indently
Рет қаралды 49 М.
Дени против умной колонки😁
0:40
Deni & Mani
Рет қаралды 8 МЛН
Эффект Карбонаро и бумажный телефон
1:01
История одного вокалиста
Рет қаралды 2,5 МЛН
Выложил СВОЙ АЙФОН НА АВИТО #shorts
0:42
Дмитрий Левандовский
Рет қаралды 813 М.
Куда пропал 3D Touch? #apple #iphone
0:51
Не шарю!
Рет қаралды 283 М.
Apple watch hidden camera
0:34
_vector_
Рет қаралды 49 МЛН
iPhone 15 Pro vs Samsung s24🤣 #shorts
0:10
Tech Tonics
Рет қаралды 8 МЛН
Fiber kablo
0:15
Elektrik-Elektronik
Рет қаралды 7 МЛН