Accounts Merge - Leetcode 721 - Python

🚀 neetcode.io/ - A better way to prepare for Coding Interviews
🥷 Discord: / discord
🐦 Twitter: / neetcode1
🐮 Support the channel: / neetcode
⭐ BLIND-75 PLAYLIST: • Two Sum - Leetcode 1 -...
💡 DYNAMIC PROGRAMMING PLAYLIST: • House Robber - Leetco...
Problem Link: leetcode.com/problems/account...
0:00 - Read the problem
0:50 - Drawing Explanation
10:10 - Coding Explanation
leetcode 721
#neetcode #leetcode #python

Пікірлер: 35

  • @guilhermezardo7671
    @guilhermezardo7671 Жыл бұрын

    Definitely not a medium problem. Should be a hard problem in my opinion...

  • @christendombaffler

    @christendombaffler

    9 ай бұрын

    It's a common Big N interview question, so it's a demoted Hard. Great if you're interested in those companies, awful otherwise, should probably be the final problem in the Union-Find section of the neetcode advanced structures course either way.

  • @atreides4911
    @atreides4911 Жыл бұрын

    What a coincidence, I was working on this one. Are you doing grind75 problems now??

  • @DavidDLee
    @DavidDLee Жыл бұрын

    Interesting solution to use the account index as the nodes being joined in the graph. I too used a Union-Find solution but used the email strings as the nodes instead. Using the index, it is pretty trivial to find the name. In my solution, I needed a map from parent -> name. Part of the problem is that Union-Find provides as output a non-useful child -> parent tree, which you need to invert into parent -> children. The last loop can be done using list comprehension in one line.

  • @technophile_
    @technophile_ Жыл бұрын

    I'm just happy that I'm able to at least understand the terminologies used in this video 😅

  • @pacomarmolejo3492
    @pacomarmolejo3492 Жыл бұрын

    Love your vids bro. Is the time complexity O(NKlogK) where N accounts, K max-emails in an account, as for the DFS solution?

  • @kyoungjunhan1098
    @kyoungjunhan1098 Жыл бұрын

    Solved this problem like 3 days ago. It was a pain in the butt to get my head around using dfs with two different references.

  • @krishnasharma657
    @krishnasharma6572 ай бұрын

    The neatness of ur code makes u neetcode😊

  • @huzayfasabri9691
    @huzayfasabri9691 Жыл бұрын

    Wait what was the time and space complexity?

  • @sethusona7401
    @sethusona7401 Жыл бұрын

    Love to you from India sir ❤️

  • @NeetCodeIO
    @NeetCodeIO Жыл бұрын

    If you're looking for today's daily LC (Design Add and Search Words Data Structure) 👉kzread.info/dash/bejne/dIiakpego8Kembg.html

  • @subikeshps2289
    @subikeshps22893 ай бұрын

    10:52 I don't understand how union find operations take only constant time? Worst case would be log n isn't it?

  • @vijethkashyap151

    @vijethkashyap151

    Ай бұрын

    With path compression in the find() operation, it takes O(1) time is what he meant to say I guess, though I am not too sure.

  • @hb-fm1oe

    @hb-fm1oe

    26 күн бұрын

    its O(1) given the combined optimizations of path compression in find() + the maintaining of a somewhat balanced tree he's doing using the multiple 'if' statements in union()

  • @AmolGautam
    @AmolGautam6 ай бұрын

    Thank you

  • @anishkarthik4309
    @anishkarthik4309 Жыл бұрын

    please make solutions for leetcode weekly contests here onwards if possible please, your explanations are very easy and understandable. No one on KZread explains better than you. So I can learn to solve weekly problems

  • @sumitsharma6738
    @sumitsharma6738 Жыл бұрын

    Bro make videos on leetcode contests too

  • @dmitriytereshchenko2032
    @dmitriytereshchenko2032 Жыл бұрын

    Thanks for great work!

  • @gauravdesale47
    @gauravdesale47 Жыл бұрын

    This one of tough af

  • @Daniel-do2mh
    @Daniel-do2mh Жыл бұрын

    Hi man! Move your content and thank you very much for helping us! Would love if u could also make playlists here of "Easy" , "Medium" and "Hard" related to how the leetcode problems solved in the videos are.

  • @subhaspaul495
    @subhaspaul495 Жыл бұрын

    please make solutions for leetcode weekly contests

  • @devenderbhatt421
    @devenderbhatt4219 ай бұрын

    It would be better if u link ur union find explanation video in description itself very hectic to find that in ur old library😢

  • @SamarAshrafii

    @SamarAshrafii

    3 күн бұрын

    Did you find it? Im looking for it also

  • @ranjithragul
    @ranjithragul Жыл бұрын

    kind request to solve weekly contest

  • @ayushbhardwaj6783
    @ayushbhardwaj67836 ай бұрын

    Cann't we just use DFS instead of using disjoint sets. ? Whats the efficiency in using disjoint sets, anyways we have to traverse all connected components.

  • @SHAZIALI-gw8bh
    @SHAZIALI-gw8bh2 ай бұрын

    This one should be hard 🤯

  • @tsunghan_yu
    @tsunghan_yu Жыл бұрын

    bad variable naming

  • @vidur_7
    @vidur_7 Жыл бұрын

    first

  • @Hope0fHumanity
    @Hope0fHumanity Жыл бұрын

    mEdiUm...

  • @aydenwu900
    @aydenwu9007 ай бұрын

    The path compression of find() in your code is not actually compressing path, here is the one that actually compress: def find(self, node): # Path Compression parentIdx = self.parents[node] while parentIdx != self.parents[parentIdx]: parentIdx = self.parents[parentIdx] self.parents[node] = parentIdx return parentIdx

  • @chrisdafa

    @chrisdafa

    6 ай бұрын

    it is compressing path. It's partial path compression. It basically updates every 2nd element to points to its grandparent. So thereby halving the path to the root parent essentially. It's kinda good because it achieves compression but not as aggressively as full path compression, thus the number of write operations is not as many when calling find(), therefore in some cases it can be more efficient when u call find