LeetCode 5 - Longest Palindromic Subtring

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

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

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

    10:50 the key point of Manacher's Algorithm. Honestly, yours is the only video I have found so far that explains the fundamental idea clearly, thank you.

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

    Thank You. After studying 6+videos&articles, yours is the only one helps me understand manacher algorithm.

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

    best explanation on youtube, you are the hero we dont deserve

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

    Thank you for the dry run. it helped me understand better.

  • @naturalsmen1
    @naturalsmen1 5 ปีที่แล้ว +3

    This is the clearest explanation I have ever seen. Excellent work!

  • @techfornoobs4241
    @techfornoobs4241 4 ปีที่แล้ว

    Best explanation I’ve found

  • @AzharulIslamParvez
    @AzharulIslamParvez 4 ปีที่แล้ว

    Very clean explanation. Thank you!

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

    Kudos! Best Manacher algo explanation.

  • @jmajcan
    @jmajcan 4 ปีที่แล้ว

    This was super helpful! Thankyou!

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

    Thank you so much. Struggled so much with this!

  • @mohakchaudhary1981
    @mohakchaudhary1981 5 ปีที่แล้ว

    Excellent explanation of this problem... great ⚡⚡⚡

  • @bauyrzhanmaksot3022
    @bauyrzhanmaksot3022 5 ปีที่แล้ว

    Thanks, clear explanation

  • @gosha5198
    @gosha5198 5 ปีที่แล้ว

    It gives wrong result " bab", for s="babadada", Should give "adada"

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

    Excellent video ( category shows comedy :) )

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

      lol the difficulty of the algorithm actually makes a comedy out of any programmer who is implementing it.

  • @KarthikArji
    @KarthikArji 5 ปีที่แล้ว

    I got IndexOutOfBound error for this code, for center =0, we are accessing lengths[2*center -i]. -->lengths[0-1]. How to avoid this error?