Longest String Chain - Leetcode 1048 - Python

แชร์
ฝัง
  • เผยแพร่เมื่อ 27 ต.ค. 2024

ความคิดเห็น • 28

  • @danielsun716
    @danielsun716 ปีที่แล้ว +6

    class Solution:
    def longestStrChain(self, words: List[str]) -> int:
    from collections import defaultdict
    # cache len of chain
    cache = defaultdict(int) # word: length of chain
    # initiate data
    data = sorted(words, key=lambda w: len(w))
    for word in data:
    # from word, the len of chain is 1 at 1st
    cache[word] = 1
    for index in range(len(word)):
    # construct predecessor
    predecessor = word[:index] + word[index + 1:]
    if predecessor in cache:
    cache[word] = max(cache[word], cache[predecessor] + 1)
    return max(cache.values())

    • @iscoto4914
      @iscoto4914 ปีที่แล้ว

      I think he makes it complex. You're one is Good. Good work

  • @troytaylor4719
    @troytaylor4719 ปีที่แล้ว

    Love The Stuff Man,Just Learning Leetcode and the way you take things that look complex and make it seem so simple is genius

  • @bidishadas832
    @bidishadas832 4 หลายเดือนก่อน

    This is the best explanation of this problem. I couldn't come up witht this.

  • @devkumar9889
    @devkumar9889 ปีที่แล้ว

    I don't know what to do , I was not able to think this straight even when I used hint from leetcode , But when I see some part of your solution , I was able to code it my self . I don't know where I am lagging , still not able to do many medium problems

  • @gauthamsakthiveeran7946
    @gauthamsakthiveeran7946 ปีที่แล้ว

    Was waiting for this ! Thanks mate

  • @michelle_tsai_drums
    @michelle_tsai_drums ปีที่แล้ว

    Love the explanation and python's string slicing

  • @reggiehurley1479
    @reggiehurley1479 ปีที่แล้ว +4

    does sorting even help us for this implementation? For the non recursive dp it helps, but for the recursive version it doesn't help since we go thru all the words anyway. can someone confirm this for me cuz im not sure lol.

    • @shrn
      @shrn 7 หลายเดือนก่อน

      On second thought, it doesn't help actually. You are right

  • @AchyutSarmaB
    @AchyutSarmaB ปีที่แล้ว +1

    from collections import defaultdict
    from typing import List
    class Solution:
    def longestStrChain(self, words: List[str]) -> int:
    words.sort(key=len) # Sort the words by length to process shorter words first
    word_chain = defaultdict(int) # Store the longest chain for each word
    for word in words:
    for i in range(len(word)):
    prev_word = word[:i] + word[i+1:]
    word_chain[word] = max(word_chain[word], word_chain[prev_word] + 1)
    return max(word_chain.values())

    • @Raymond-Wu
      @Raymond-Wu ปีที่แล้ว

      This was easier to understand for me than the solution shown in the video. Great job!

  • @aasheesh6001
    @aasheesh6001 ปีที่แล้ว

    Great Explanation!!! Thanks for Daily Problem solutions!!!!

  • @roywastaken
    @roywastaken ปีที่แล้ว +2

    i know the company in the thumbnail might not matter to you much, but TikTok has actually asked this problem more frequently (according to Leetcode stats) than any other company. So idk why Meta's logo is in the thumbnail when they've asked it very infrequently in comparison

  • @VidyaBhandary
    @VidyaBhandary ปีที่แล้ว

    Genius explanation 🎉

  • @vs3.14
    @vs3.14 ปีที่แล้ว +1

    Love this explanation. Thanks man. One question, I have been following the 150 Qs from neetcode and then the leetcode 150 most asked. I started Trees yesterday. Is it possible to finish up the list within a month and understand everything? (Given, I have done every topic sequentially and Continuously review 3-4 of them each day) I am really worried about my upcoming interviews. And I find the important ones(Tree, Graph, DP) quite hard😅

  • @phpostrich
    @phpostrich ปีที่แล้ว

    literally was looking for a video on this yesterday, and couldnt find on, thats so weird

    • @phpostrich
      @phpostrich ปีที่แล้ว

      thanks for the help :)

  • @rajanmaheshwari
    @rajanmaheshwari ปีที่แล้ว

    For time complexity, we will not take sort into consideration?

  • @saiashishvure
    @saiashishvure ปีที่แล้ว +2

    yoo appreciate the daily upload, will you ever venture into codeforces questions, etc?
    i know they're not really asked in interviews, but will definitely help in improving problem solving skills and are quite fun in general

    • @iscoto4914
      @iscoto4914 ปีที่แล้ว

      codeforces not worth it unless u're targeting for icpc and you have enough time in hand

    • @saiashishvure
      @saiashishvure ปีที่แล้ว

      @@iscoto4914 basically expand out from interview prep to problem solving in general. or atleast maybe once in a while

  • @簡崇宇-b5z
    @簡崇宇-b5z ปีที่แล้ว

    Waiting this explanation 🎉

  • @binfos7434
    @binfos7434 3 หลายเดือนก่อน

    class Solution:
    def longestStrChain(self, words: List[str]) -> int:
    dp = {w: -1 for w in words} # {word: seqLen}
    def dfs(w):
    if w in dp:
    if dp[w] != -1:
    return dp[w]
    else:
    return 0

    for i in range(len(w)):
    dp[w] = max(dp[w], 1 + dfs(w[:i] + w[i+1:]))
    return dp[w]

    res = 0
    for i in words:
    res = max(res, dfs(i))
    return res

  • @iscoto4914
    @iscoto4914 ปีที่แล้ว

    can someone explain me the line res = max(res, 1 + dfs(word_index[pred])) pls?

  • @memevideos7461
    @memevideos7461 2 หลายเดือนก่อน

    isnt time complexity O(2^N * L * L * N)

  • @uddiptakalita3006
    @uddiptakalita3006 ปีที่แล้ว

    Can we solve this using DSU

    • @sumitsharma6738
      @sumitsharma6738 ปีที่แล้ว

      Yeah, my First thought is also Trie or DSU but the answer is noo once you try to draw the trie you will see why DSU will not work