Accounts Merge - Leetcode 721 - Python

Поделиться
HTML-код
  • Опубликовано: 24 ноя 2024

Комментарии • 38

  • @guilhermezardo7671
    @guilhermezardo7671 Год назад +73

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

    • @christendombaffler
      @christendombaffler Год назад +4

      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.

  • @DavidDLee
    @DavidDLee Год назад +5

    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_ Год назад +5

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

  • @krishnasharma657
    @krishnasharma657 6 месяцев назад +3

    The neatness of ur code makes u neetcode😊

  • @huzayfasabri9691
    @huzayfasabri9691 Год назад +7

    Wait what was the time and space complexity?

  • @subikeshps2289
    @subikeshps2289 7 месяцев назад +2

    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 5 месяцев назад +1

      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 4 месяца назад

      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()

  • @atreides4911
    @atreides4911 Год назад +26

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

  • @anishkarthik4309
    @anishkarthik4309 Год назад +6

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

  • @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.

  • @amirjalilifard8743
    @amirjalilifard8743 8 дней назад

    This is definitely a hard problem.

  • @amirjalilifard8743
    @amirjalilifard8743 8 дней назад

    This is definitely a hard problem

  • @sumitsharma6738
    @sumitsharma6738 Год назад +3

    Bro make videos on leetcode contests too

  • @NeetCodeIO
    @NeetCodeIO  Год назад +1

    If you're looking for today's daily LC (Design Add and Search Words Data Structure) 👉ruclips.net/video/BTf05gs_8iU/видео.html

  • @devenderbhatt421
    @devenderbhatt421 Год назад +4

    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 4 месяца назад

      Did you find it? Im looking for it also

  • @sethusona7401
    @sethusona7401 Год назад

    Love to you from India sir ❤️

  • @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?

  • @AmolGautam
    @AmolGautam 10 месяцев назад

    Thank you

  • @ayushbhardwaj6783
    @ayushbhardwaj6783 10 месяцев назад

    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.

  • @dmitriytereshchenko2032
    @dmitriytereshchenko2032 Год назад +1

    Thanks for great work!

  • @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

  • @SHAZIALI-gw8bh
    @SHAZIALI-gw8bh 6 месяцев назад

    This one should be hard 🤯

  • @ranjithragul
    @ranjithragul Год назад

    kind request to solve weekly contest

  • @gauravdesale47
    @gauravdesale47 Год назад

    This one of tough af

  • @tsunghan_yu
    @tsunghan_yu Год назад +2

    bad variable naming

  • @vidur_7
    @vidur_7 Год назад

    first

  • @SydneyMadueke
    @SydneyMadueke Год назад

    mEdiUm...

  • @aydenwu900
    @aydenwu900 11 месяцев назад +2

    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 10 месяцев назад +3

      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