214. Shortest Palindrome | Leetcode POTD Explained

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

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

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

    Sorry Everyone
    When s[i]!=s[j] then i need to fill longPal[j] = 0 but i fill longPal[j] = prev value
    Correct one is
    [0 1 0 0 0 1 2 2 0 1 2 2 3 4 5 6 7 0]

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

    no worries... we got your point... sometime it happens .... everything except the lps part was 100% correct .... shoutout to you for your consistency

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

      Thank yo so much ❤️❤️

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

    Hey! you consistency is really amazing

  • @krishpoptani7862
    @krishpoptani7862 หลายเดือนก่อน +1

    Your dry run was completely wrong! I checked it using testcase on leetcode.

    • @codeby_naruto
      @codeby_naruto  หลายเดือนก่อน +1

      Yaa bro sorry i has pin a comment for this..

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

      @@codeby_naruto keep working bro 👍

  • @amanavengeraman
    @amanavengeraman หลายเดือนก่อน +1

    I solved using brute force which is O( N)^2, it passed all the tests cases but Leetcode did not raise TLE, why?

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

      Sometimes it was accepted in 10^8