LeetCode 126. Word Ladder II

แชร์
ฝัง

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

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

    the code give time limit excceded when I try it now in augus 14 2022

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

    getting TLE now

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

    nice one , smart and clear, it takes me a little time to figure out why BFS miss some result, and I tried to use BFS + DFS backtrack, but actually just use your idea will work

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

    It should be n^2 because each iteration, curList+[nextWord] is O(n)

  • @sankalpspatil4890
    @sankalpspatil4890 10 หลายเดือนก่อน

    They definilty added more test cases, I'm getting a MLE at 32/36 testcases

  • @sainikhilpalukuri1373
    @sainikhilpalukuri1373 3 ปีที่แล้ว

    Hi Cheng, are u not actively solving leetcode these days??

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

      yea, bit busy with my job

    • @djslimcodes2337
      @djslimcodes2337 2 ปีที่แล้ว

      @@happycoding1093 where are you working currently?

  • @JW-bx4su
    @JW-bx4su 3 ปีที่แล้ว

    Your curList contains all the words used for the path, you only need to check if nextword is in your curList or not.

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

    00:16 to the N word