LeetCode 5. Longest Palindromic Substring (Algorithm Explained)

Поделиться
HTML-код
  • Опубликовано: 26 ноя 2019
  • The Best Place To Learn Anything Coding Related - bit.ly/3MFZLIZ
    Preparing For Your Coding Interviews? Use These Resources
    --------------------
    (My Course) Data Structures & Algorithms for Coding Interviews - thedailybyte.dev/courses/nick
    AlgoCademy - algocademy.com/?referral=nick...
    Daily Coding Interview Questions - bit.ly/3xw1Sqz
    10% Off Of The Best Web Hosting! - hostinger.com/nickwhite
    Follow My Twitter - / nicholaswwhite
    Follow My Instagram - / nickwwhite
    Other Social Media
    ----------------------------------------------
    Discord - / discord
    Twitch - / nickwhitettv
    TikTok - / nickwhitetiktok
    LinkedIn - / nicholas-w-white
    Show Support
    ------------------------------------------------------------------------------
    Patreon - / nick_white
    PayPal - paypal.me/nickwwhite?locale.x...
    Become A Member - / @nickwhite
    #coding #programming #softwareengineering
  • НаукаНаука

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

  • @AjaySingh-xd4nz
    @AjaySingh-xd4nz 4 года назад +515

    Great Explanation. Thanks!
    Providing R - L - 1 explanation:
    e.g. racecar (length = 7. Simple math to calculate this would be R - L + 1 ( where L= 0 , R=6 )), considering start index is '0'.
    Now, in this example ( 'racecar' ) when loop goes into final iteration, that time we have just hit L =0, R =6 (ie. length -1)
    but before exiting the loop, we are also decrementing L by L - - , and incrementing R by R ++ for the final time, which will make L and R as ( L = -1, R = 7 )
    Now, after exiting the loop, if you apply the same formula for length calculation as 'R - L +1', it would return you 7 -( - 1 )+1 = 9 which is wrong, but point to note is it gives you length increased by 2 units than the correct length which is 7.
    So the correct calculation of length would be when you adjust your R and L . to do that you would need to decrease R by 1 unit as it was increased by 1 unit before exiting the loop , and increase L by 1 unit as it was decreased by 1 unit just before exiting the loop.
    lets calculate the length with adjusted R and L
    ( R -1 ) - ( L +1 ) + 1
    R -1 - L -1 + 1
    R -L -2 + 1
    R - L -1

    • @kickbuttowsk2i
      @kickbuttowsk2i 4 года назад +9

      thanks for your explanation, now everything makes sense

    • @AjaySingh-xd4nz
      @AjaySingh-xd4nz 4 года назад +1

      @@kickbuttowsk2i you are welcome!

    • @amruthasomasundar8820
      @amruthasomasundar8820 3 года назад +2

      Could you please provide the explanation of why start takes len-1/2 instead of len/2

    • @AjaySingh-xd4nz
      @AjaySingh-xd4nz 3 года назад +85

      @@amruthasomasundar8820 Start is calculated as (len-1)/2 to take care of both the possibilities. ie. palindrome substring being of 'even' or 'odd' length. Let me explain.
      e.g.
      Case-1 : When palindrome substring is of 'odd' length.
      e.g. racecar. This palindrome is of length 7 ( odd ). Here if you see the mid, it is letter 'e'.
      Around this mid 'e', you will see start ('r') and end ('r') are 'equidistant' from 'e'.
      Lets assume this 'racecar' is present in our string under test-> 'aracecard'
      Now, index of e is '4' in this example.
      if you calculate start as i - (len-1)/2 or i - len/2, there would not be any difference as len being 'odd' would lead to (len -1)/2 and (len/2) being same. lets use start = i - (len-1)/2, and end = i + (len/2) in this case.
      start = 4 - (6/2) , end = 4 + (7/2)
      start = 4-3, end = 4+3
      start =1, end = 7
      s.substring(1, 7+1) = 'racecar'
      Case-2: When palindrome substring is of 'even' length
      e.g. abba
      Lets see this case. Lets assume given string under test is-> 'eabbad'
      In this case, your i is going to be 2. ( This is most critical part )
      With the given solution by Nick, you would found this palindrome with
      int len2 = expandFromMiddle(s, i, i+1)
      Now if you look at this method, your left which starts with 'i' is always being compared with right which starts with i+1
      That would be the case here with 'eabbad'. When i is 2 ie. 'b' . Then your left will be 2 (b) and right will be 2+1 ( b) and the comparison will proceed.
      In this case, once you have found 'abba' then it being 'even' the index 'i' would fall in your 'first half' of the palindrome. ab | ba
      if you calculate start as start = i - (len/2) , it would be wrong!! because your i is not in the mid of palindrome.
      lets still try with this formula start = i - len/2
      start = 2 - (4/2) // i =2, len = 4 ( abba)
      start = 2 -2 =0 ( wrong!)
      end = i + (len/2)
      end = 2 + 2 = 4
      s.substring( 0, 4+1) // ''eabba' --> wrong solution!!!
      Here start should have been 1
      lets recalculate start as-
      start = i - (len-1)/2
      start = 2 - (4-1)/2
      start = 2- 3/2
      start = 2 -1 = 1
      s.substring(1, 4+1) // 'abba' --> correct solution
      So you should calculate start as start = i - (len-1)/2 to take care of the case when palindrome is of 'even' length. For palindrome being 'odd' length it would not matter if start is calculated as i - (len/2) or i - (len-1)/2.
      Hope it helps!

    • @AjaySingh-xd4nz
      @AjaySingh-xd4nz 3 года назад

      @Garrison Shepard Glad that you found it helpful!

  • @Ooftheo
    @Ooftheo 3 года назад +22

    Just to clarify for those who don't understand why we do "i - (len -1)/2" and "i + (len / 2)" is because if you divide the length of the two palindromes found from string by two, you get the middle point of the length and from that, if you subtract/add the current index, you get both the starting/ending point to return the palindrome substring. Alternative would be to create a global variable to keep track of both starting and ending points and only replace them when previous length is smaller than current.

    • @goodtoseeya1543
      @goodtoseeya1543 2 года назад +1

      Just wanted to say thanks

    • @siddharthgupta6162
      @siddharthgupta6162 2 года назад +4

      Shouldn't we then do "i - (len)/2" and "i + (len / 2)"?

    • @pratimvlogs4177
      @pratimvlogs4177 2 года назад

      We do "i-(len-1)/2" for only the start to handle the cases where the len is even, that is when len2 was greater than len1. In that case start is closer to i by 1 than end is closer to i

    • @Vikasslytherine
      @Vikasslytherine 2 года назад +1

      Why not just return the palindrome from the "expandFromMiddle()" function instead of returning the length of the palindrome?

    • @cinderelly2224
      @cinderelly2224 2 года назад

      @@Vikasslytherine Because we're not sure if the palindrome is one like "racecar" or one like "babac." So we apply both cases to our word and return the max.

  • @calp8395
    @calp8395 2 года назад +20

    Took me a while to understand this code as the way it was explained was a bit confusing.
    There's a few things to understand in this code:
    1) start and end will track the index start and index end respectively of the longest palindrome substring
    2) the method expandFromMiddle is extremely misleading. It should be expandFromIndex instead of expandFromMiddle which suggests that we should expand from the centre.
    3) expandFromIndex method is called for each index using two pointers, left and right, and each time it's checking that the string is a palindrome and continues to expand. This method is called twice for every index for the two different cases of a palindrome, "aba" and "abba".
    4) if (len > end - start) - start and end represents the index for the longest palindrome substring, so if the len (which is Math.max(len1, len2) is greater than the current largest palindrome substring then we want to update start and end.
    5) start = i - ((len-1)/2) and end = i + (len/2) --> this is really easy understand if you understand that "i" in this case is the centre of the longest palindrome. so let's say the longest palindrome of "aba" is "aba", and i would be index 1 which is the centre of the palindrome, then follow the formula to find the index of the beginning of "aba"
    Hope this helps!

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

      This is the most excellent explanation for this problem. I wasted lot of time re-watching this super confusing video, but finally makes sense after reading your notes and working through on a whiteboard.

    • @Ash-dt7ux
      @Ash-dt7ux Год назад

      Thanks for explaining this!

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

      THANK YOU THANK YOU THANK YOU

  • @arunbhati1417
    @arunbhati1417 4 года назад +19

    r-l-1 because r and l reach one move extra toward left and right.

  • @tindo0038
    @tindo0038 4 года назад +159

    Omg i finally found somebody who does it in java

    • @Kuriocity
      @Kuriocity 3 года назад +9

      yes bro all this c++ folks

    • @deepaksngh9716
      @deepaksngh9716 2 года назад +4

      It doesn't matter which language 😭😭. Meanwhile i also prefer java 🥰

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

      Same here

  • @chadmwest
    @chadmwest 3 года назад +3

    The -1 at line 29 is necessary because the while loop will increment left and right one additional time.
    For example: zovxxvo: If your final indexes are 6 and 1, you end up with 7 and 0. 7-0-1=6, which is the length of the palindrome.

  • @danieltannor6647
    @danieltannor6647 4 года назад +45

    @11:16 I feel like there isn't a very good explanation as to why you're doing 'len -1' on line 13, and on line 14 there is no '-1'

    • @pratimvlogs4177
      @pratimvlogs4177 2 года назад

      We do "i-(len-1)/2" for only the start to handle the cases where the len is even, that is when len2 was greater than len1. In that case start is closer to i by 1 than end is closer to i

  • @Alison-yg6qs
    @Alison-yg6qs 4 года назад +15

    Oh...! I was waiting for this thank you Nick! :)

  • @rahulbawa3969
    @rahulbawa3969 3 года назад

    Thanks a ton Nick. The if condition for resetting the boundary is what I couldn't really understand from the leetcode solution but thanks for explaining that. Awesome!

  • @ragibhussain5257
    @ragibhussain5257 4 года назад

    A bit point to add that if we have to return the first occurence of the palindrome, if there are many with same length. Thus, in the main method , where (len > end - start), we need to add 1 (len > end - start + 1), so for an example if the palindrome length is 1 the end and start are same and thus 1 > 0 and we will keep on updating the start and end and return the last occurence but we needed to return the first occurence.

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

    have been watching several videos on the problem. so far the only explanation that clicked into my head. Thank you.

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

    Great Explanation Indeed! Thanks =). One thing to consider for other languages is that in Java, an even number divided by 2 is rounded down. i.e. 5/2 === 2 ( not 2.5).
    Here is small change for Typescript on line 12*
    if(len > end - start) {
    start = i - Math.floor( (len -1) / 2 )
    end = i + Math.floor(len / 2)
    console.log({len, i, start, end, s: s.substring(start, end +1 )})
    }

  • @sase1017
    @sase1017 4 года назад

    Great job, Nick, thanks for taking your time to make this vid

  • @manishankar8688
    @manishankar8688 4 года назад +16

    correction : return s.Substring(start, end-start + 1); line number 18.

    • @kartiksoni825
      @kartiksoni825 4 года назад

      it gives the right answer, but could you explain why is it not simply start, end(+1)?

    • @shinratensei5734
      @shinratensei5734 3 года назад +1

      @@kartiksoni825 second parameter denotes the no of characters to be considered

    • @harshagarwal3531
      @harshagarwal3531 3 года назад

      thank u so much, was debugging since an hour

    • @shinratensei5734
      @shinratensei5734 3 года назад

      @@harshagarwal3531 good to know...but go through stl once

    • @harshagarwal3531
      @harshagarwal3531 3 года назад

      @@shinratensei5734 ya sure, can you suggest any cheat sheet or tutorial in which I can see at a glance.
      Thank u in advance

  • @sukritakhauri648
    @sukritakhauri648 4 года назад +4

    Perfect explanation, one just needs to modify the condition (len

    • @linyuanyu5417
      @linyuanyu5417 4 года назад

      But I don't get that start and end is always 0, why do you have to compare it with len?

    • @linyuanyu5417
      @linyuanyu5417 4 года назад

      And how do you ensure that end-start+1 will give you the first longest palindromic substring?

    • @sathishkumar-dc9ce
      @sathishkumar-dc9ce 3 года назад

      yep..he is right u have to do end-start+1 to print first occurence if there are palindromes of same length...
      Actually this problem happened on gfg and later after this comment only i could pass all testcases ;)

  • @mauricegoldberg7458
    @mauricegoldberg7458 4 года назад +3

    Clearest explanation of this problem I've seen so far. Thanks!

  • @ianchui
    @ianchui 4 года назад +130

    great question! I've gotten this question for two interviews
    edit: I don't remember which companies.

  • @amitgupta3320
    @amitgupta3320 4 года назад +1

    Nick ,you are amazing. Thanks for sharing your idea.

  • @Lydia-cx6cm
    @Lydia-cx6cm Год назад

    Even when gpt came out, I still rely on your video when I don't get the questions...Thank you so much!

  • @harinijeyaraman8789
    @harinijeyaraman8789 4 года назад

    Your videos are amazing man. Thanks a ton for your efforts !

  • @shubhamtiwari6660
    @shubhamtiwari6660 4 года назад +9

    Man what an explanation.
    Thanks, dude.

  • @alinal6852
    @alinal6852 4 года назад +2

    This video is really helpful! Thanks!

  • @DanielOliveira-ex6fj
    @DanielOliveira-ex6fj 4 года назад +40

    Your reasoning for the +1 was correct.
    The problem was that right should be right-1 and left should be left+1, as you decremented/incremented and then checked if it you still had a palindrome.
    That’s why -1 worked, you ended up subtracting -2.

    • @ankuradhey
      @ankuradhey 4 года назад +2

      Smart boy

    • @ryoyamamoto6488
      @ryoyamamoto6488 4 года назад +2

      I'm Japanese (meaning its hard for me to understand English sometime) and currently studying Leetcode hard, so if you have time, can you write some actual code (maybe partially)?
      you think he should write
      right --;
      left ++;
      and check if it still had a palindrome?
      sorry if I'm saying something really stupid.

    • @ahkim93
      @ahkim93 4 года назад +7

      can you please explain why right should be right-1 and left should be left+1 in the return statement? thank you!
      got it! it's cause the last iteration we incremented right by 1 and decremented left by 1 to much then the while case broke.

    • @waterstones6887
      @waterstones6887 4 года назад

      I was also confused at the beginning of this point. thanks for the clear explanation

    • @hoangnguyendinh1107
      @hoangnguyendinh1107 2 года назад

      @@ahkim93 because the final while loop condition that break the loop is actually the right+1 and the left -1 (you gonna return the right and left) but before that must check that the character at left-1 and right+1 are not the same. So right +1 - (left-1) -1= right - left +1 which is the actual length

  • @chodingninjas7415
    @chodingninjas7415 4 года назад +12

    more interview questions nick

  • @adithyabhat4770
    @adithyabhat4770 4 года назад +5

    This teached me that we have to actually care about brute force rather than trying to get most efficient solution in the beginning itself.
    Amazing solution.

  • @myvinbarboza3038
    @myvinbarboza3038 4 года назад +2

    everything is awesome the left> right is not required though
    also start=i-(len-1)/2
    It is basically done for all even cases where we have a right value that's equal but not left
    Assume start=i-(len)/2
    Take ex cbbd which will return a len of 2 when i=1
    we would get an answer of cbb as our start=1-1=0
    Hope it helps :)

  • @crazyguy338
    @crazyguy338 4 года назад +4

    12:32 and that's when I subscribed
    great explanations btw!

  • @paulonteri
    @paulonteri 3 года назад

    This is one of you best explanations.

  • @saikumartadi8494
    @saikumartadi8494 4 года назад +6

    thanks for the video .can u please make a video on the O(n) approach. Manachers algorithm

  • @michaeldang8189
    @michaeldang8189 4 года назад

    Add a special check that if max len is same as the string length, break out. You will not find longer ones by advancing i. Though it will not change the runtime complexity.

  • @tarnished3571
    @tarnished3571 2 года назад

    Great video. Doing some leetcode practice before my interviews

  • @nikhilaourpally8905
    @nikhilaourpally8905 3 года назад +4

    You communicate very clearly! There aren't a lot of software developers who can do that.

  • @MAXNELSON
    @MAXNELSON 2 года назад

    If you are using JAVASCRIPT, or a dynamic language, or any language that doesn't allow type declaration, make sure you are parsing integers where required so your indices don't get messed up. IE: 0.5 = 0 as an Int, when lines 13 and 14 could be meant to produce a 1.

  • @Scratchmex
    @Scratchmex 2 года назад +2

    If we invert the string and there was a palindrome in the first, it will also be in the inverted one so you can convert this problem into the Longest Common Substring one

  • @ByteMock
    @ByteMock 4 года назад

    great question, we will have to use this one soon.

  • @enrro
    @enrro 4 года назад

    You're not an idiot dude. You have teach me much!

  • @chaithnay111
    @chaithnay111 4 года назад

    Thank you for such a great explanation

  • @chinmayswaroopsaini7890
    @chinmayswaroopsaini7890 4 года назад

    you save the day man. keep going

  • @harold3802
    @harold3802 4 года назад

    These videos are GOLD

  • @johnleonardo
    @johnleonardo 4 года назад +3

    this explanation was god-tier, you legend.

  • @suryaajha2142
    @suryaajha2142 4 года назад

    You explain the solution like a god

  • @jaylenzhang4198
    @jaylenzhang4198 4 года назад

    Good answer and explanation! Thanks!

  • @tigergold5990
    @tigergold5990 2 года назад +4

    Here’s a slightly more complicated optimization that I used: start checking characters as the center from the middle. If you find a palindrome, adjust the loop’s boundaries so it doesn’t check the first character as the center for a palindrome of length 5, for example.

  • @Perldrummr
    @Perldrummr 2 года назад

    Thanks man, helped me understand this solution much better.

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

    Hi Nick just going through your videos before my exam tomorrow, Seems the way you teach us is really different from others , I am having a hard time in understanding dynamic programming, I couldn't get any of the content here and there who explains well , could you start a new playlist of dynamic programming....thanks in advance love from India ❤️

  • @taekwondoman2D
    @taekwondoman2D 4 года назад +6

    Lol this question screwed me before, thanks for the explanation.

  • @andywang4189
    @andywang4189 4 года назад

    Good explanation, thanks!

  • @c0411026
    @c0411026 3 года назад

    Great video, thanks for the explanation!

  • @suharajsalim4549
    @suharajsalim4549 3 года назад

    Great explanation! Thank you :)

  • @skumakerguitar8708
    @skumakerguitar8708 3 года назад +2

    nick white thanks bro! i'm sick with dynamic programming haha

  • @tanuj02940294
    @tanuj02940294 2 года назад

    That was a great explanation, loved it in the first go. And cherry on the cake, it's in java 😃

  • @RajSingh-gz6mr
    @RajSingh-gz6mr 8 месяцев назад +1

    Nicely Explained!

  • @estherdarrey2090
    @estherdarrey2090 3 года назад +11

    Hey Nick, could you please explain why we are initially taking start=0 and end=0 when we are supposed to take pointers from middle?

    • @HimanshuSingh-dh4ds
      @HimanshuSingh-dh4ds 3 года назад +2

      exactly my point... i was wondering this algo was supposed to start from middle of the string

    • @natiatavtetrishvili3108
      @natiatavtetrishvili3108 3 года назад +3

      You will have to check every element for being a possible middle element of a palindrome. You can start from the middle but still you need to check every element. In a best case scenario, where the whole string is a palindrome, you might get the answer sooner, but if the longest palindrome is not the whole input, you still need to check every element. i.e input like "aaabc" or "abccc". I hope I was clear )

    • @javawithhawa
      @javawithhawa 2 года назад

      @@natiatavtetrishvili3108 thank you, that was clear!

  • @harishkandikatla9791
    @harishkandikatla9791 4 года назад +9

    Please do a video on Manacher's algorithm

    • @techwithwhiteboard3483
      @techwithwhiteboard3483 4 года назад +5

      theres already a video by a channel named
      ideserve
      watch it
      its worth it

  • @alexcoding99
    @alexcoding99 3 года назад

    Great video and very good explanation!

  • @shivangishukla2629
    @shivangishukla2629 4 года назад

    amazing explanation! thanks

  • @user-ng9lt5db1l
    @user-ng9lt5db1l Год назад

    Thank you so much for good explanation

  • @amandapanda3750
    @amandapanda3750 2 года назад

    really appreciate these videos.

  • @spuranyarram8711
    @spuranyarram8711 3 года назад

    @Nick can we use the same approach to try and solve Longest Palindromic Subsequence (LC 516) ?

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

    how about checking for pallindrome for the actual string first as it is the longest substring and then if it is not a pallindrome, breaking that substring by 1 character from each side until a pallindrome is left

  • @akhila5597
    @akhila5597 3 года назад

    This is the best explanation !!! Thankssssss

  • @hacker-7214
    @hacker-7214 4 года назад

    damn these edge cases, and bounds checking are killlling me. not only i have to comeup with the algorithm i also have to wrap my mind around the bounds checking. i hate how indices start at 0 and not 1.

  • @manaswitadatta
    @manaswitadatta 3 года назад

    your video + comments are better than the top voted answers in LC. Sharing it there :)

  • @shyamutty
    @shyamutty 3 года назад +1

    checked in C# and this change in line 18 was required: return s.Substring(start, end - start + 1);

  • @sharuk3545
    @sharuk3545 2 года назад

    Awesome Explanationnnn broo

  • @suprathikm3639
    @suprathikm3639 3 года назад

    Awesome explanation.

  • @mukeshmaniraj
    @mukeshmaniraj 3 года назад

    super, thanks,I am going to try and see if this algorithm works for the longest substring with at most k distinct characters question,

  • @mohitsoni7787
    @mohitsoni7787 4 года назад

    Thanks man....Can you explain some questions regarding the image of trees.

  • @yogesh9193
    @yogesh9193 4 года назад +3

    The but'um in your every video reminds me of himym :D ... Great explanation :)

  • @BessedDrest
    @BessedDrest 4 года назад +8

    Thanks for the great videos! So just to be clear - "expandFromMiddle" doesn't mean expand from middle of the string `s`, correct? We're expanding based on `i` as the middle char (or left and right indices from the middle in the case of `abba`)?

    • @amansharma7865
      @amansharma7865 4 года назад

      you are absolutely right

    • @Manolete919
      @Manolete919 2 года назад

      that got me confused all the time, so thank for the reaffirmation. it's expanding every index.

  • @abhishekvishwakarma9045
    @abhishekvishwakarma9045 4 года назад

    Nice and easiest Explanation thanks 😎

  • @AJITSINGH-ez1it
    @AJITSINGH-ez1it 3 года назад +1

    can we return right-1 - (left+1) +1 for better understanding ?

  • @yumo
    @yumo 2 года назад

    Great explanation, thanks

  • @kumararab758
    @kumararab758 4 года назад +1

    Smoothly explained. Thanks, bruh

  • @praneeth871
    @praneeth871 8 месяцев назад

    Really a good explanation

  • @ashwinishanbhogue2917
    @ashwinishanbhogue2917 4 года назад

    Hey Nick, It would be great if you could do an explanation for Leetcode Problem 6. ZigZag Conversion.

  • @manishisaxena2712
    @manishisaxena2712 3 года назад

    Lets take an example of (RAR) sets suppose WE ARE checking palendrome property for character (A) which is at position A -- >1 we know that the expand function should return 3 in this case so (right -left-1 = 3). When we look at the above loop carefully we will see that currently left= -1 and right = 3 ( because that's where the condition will terminate). Let's put the values in the above equation 3 - (-1) -1 = 3 hence proved

  • @sukritakhauri65
    @sukritakhauri65 3 года назад

    Great Explanation

  • @anywheredoor4699
    @anywheredoor4699 4 года назад

    I have a question the second call to expand method with I at the last index won't that give index out of bounds, how is the code working

  • @yaraye5397
    @yaraye5397 4 года назад

    nice explanation!

  • @prajwalsolanki1049
    @prajwalsolanki1049 3 года назад

    In the brute force solution, how can I keep a track of the longest substring? Something that can store the values of i and j (end index values of longest substring), and update it when a new maximum length is found. I can only think of a Hashmap with something like Please help me out. Thank you!

  • @shafidrmc
    @shafidrmc 4 года назад

    Can anyone explain the intuition behind the -1 in right-left-1 part? I get that right - left part but I had to do some hand calculation to see the -1 part and in an interview, I wouldn't have the natural intuition to do the -1 so I wanna see the logic behind the -1. Thanks

  • @nehachaudhary4388
    @nehachaudhary4388 4 года назад

    In the expandFromMiddle while condition, shouldn't be right

  • @prashantverma4471
    @prashantverma4471 4 года назад +2

    Rather than dealing with index, deal with String -> easier to understand
    public String longestPalindrome(String s)
    {
    if (s==null || s.length() < 1 ) return "";
    String returnString = s.substring(0,1);
    for (int i = 0; i < s.length(); i++)
    {
    String s1 = getMaxLengthPalindromeAtI(s, i, i ); // with i at center
    String s2 = getMaxLengthPalindromeAtI(s,i , i+1);
    String temp = s1.length() > s2.length() ? s1 : s2;
    if (temp.length() > returnString.length()) returnString = temp;
    }
    return returnString;
    }
    public String getMaxLengthPalindromeAtI(String s, int left, int right)
    {
    if (s==null || left > right) return null;
    while (left >= 0 && right

  • @user-nm4fk1ee6b
    @user-nm4fk1ee6b 2 года назад

    Nice solution Nick :D

  • @alex.k4371
    @alex.k4371 2 года назад

    time limit exceeded with my own solution
    this helped alot

  • @cam7minus1
    @cam7minus1 9 месяцев назад

    Its always the plus 1 or minus 1 that gets me everytime

  • @MrThepratik
    @MrThepratik 4 года назад

    Nice explanation

  • @ArjunKalidas
    @ArjunKalidas 4 года назад +26

    Your videos are usually good and makes a lot of sense, but this one was pretty vague and I couldn't understand how you were traversing the string from center to outward. Especially the start and end variables and also the return statement in the "expandFromMiddle" method "R - L - 1". Could you please explain that to me? Thanks Nick.

    • @AjaySingh-xd4nz
      @AjaySingh-xd4nz 4 года назад +7

      R - L - 1 explanation:
      e.g. racecar (length = 7. Simple math to calculate this would be R - L + 1 ( where L= 0 , R=6 )), considering start index is '0'.
      Now, in this example ( 'racecar' ) when loop goes into final iteration, that time we have just hit L =0, R =6 (ie. length -1)
      but before exiting the loop, we are also decrementing L by L - - , and incrementing R by R ++ for the final time, which will make L and R as ( L = -1, R = 7 )
      Now, after exiting the loop, if you apply the same formula for length calculation as 'R - L + 1', it would return you 7 - (- 1) +1 = 9 which is wrong, but point to note is it gives you length increased by 2 units than the correct length which is 7.
      So the correct calculation of length would be when you adjust your R and L . to do that you would need to decrease R by 1 unit as it was increased by 1 unit before exiting the loop , and increase L by 1 unit as it was decreased by 1 unit just before exiting the loop.
      lets calculate the length with adjusted R and L
      ( R -1 ) - ( L +1 ) + 1
      R -1 - L -1 + 1
      R -L -2 + 1
      R - L -1 ( there you go !!!!)

    • @touwmer
      @touwmer 2 года назад

      @@AjaySingh-xd4nz Thanks, it makes sense now.

    • @ViktorKishankov
      @ViktorKishankov 2 года назад +3

      There is more conceptual explanation, although it more verbose.
      When we count length of the substring from its start and end points we usually do R - L + 1. The "1" there is essentially "inclusion of the very first element" of the substring after we substracted R index (the length between 0 and R) from L index (the length between 0 and L). For example: "index 2" minus "index 0" would be "2" (which is absolute difference), but if we are talking about the substring length then we should add one extra element to get the proper length of 3 elements: [0,1,2]. This is specific of discrete counting of the indexes and lengths (which looks very reasonable if you try to draw this operation).
      So... back to the case about "R - L - 1".
      At the very last iteration inside the "expansion loop" we decreased the L and increased the R but since the loops is terminated it means that chars at these indexes are not part of the palindrome anymore, they point to non-matching chars now, so in order to get valid palindrome boundaries we need "to compensate them" by bringing them back one step: R = R - 1, L = L + 1. That's the place where " -1" coming from. But what about "+1"? Yes, that's the implicit part. Since we need to make that "inclusion of the first element" of the substring to get the length (explained in the first part above) we implicitly keep that "+1" carried from the last loop iteration before the loop termination.
      Hope this helps more than confuses...

    • @cinderelly2224
      @cinderelly2224 2 года назад

      @@ViktorKishankov This makes so much sense, thank you!

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

      Its because you are dumb

  • @harshittrehan6232
    @harshittrehan6232 4 года назад +3

    Can someone explain the start and end indices determination ? (len-1/2) and (len/2)
    A little lost there. Great video tho. Clears everything up nicely.

    • @Michaeljamieson10
      @Michaeljamieson10 3 года назад

      it is because the length of the longest palindrome needs to be split between two values(why we divided by two) then it needs to be placed on the correct index (why we subtract i in start and add it in end+1)

  • @iamabhhilashdk
    @iamabhhilashdk 4 года назад +2

    Hi Nick. I follow your Videos to learn to solve coding problems. But I am weak at figuring out edge cases and evaluating boundary conditions and coding for them. Is it possible for you to make a video taking an example and explain how to identify edge cases and code for them.

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

      Hey, I am also a beginner in my journey to learn DSA. From my POV, solve at least 100 problems before you start thinking about patterns. This subject has a steep learning curve and you would show improvement only after considerable effort at the start.

  • @varnachandar290
    @varnachandar290 2 года назад +5

    Easier way to understand the code with no track of start and end indices:
    class Solution {
    private String substring = "";
    public String longestPalindrome(String s) {
    if(s == null || s.length() < 1) return "";

    for(int i = 0; i even.length() ? odd : even;
    substring = max.length() > substring.length() ? max : substring;
    }
    return substring;
    }
    public String expandFromMiddle(String s, int left, int right){
    while(left >= 0 && right < s.length() && s.charAt(left) == s.charAt(right)){
    left--;
    right++;
    }
    return s.substring(left+1, right);
    }
    }

    • @aatmanshah1501
      @aatmanshah1501 2 года назад

      I like this solution! Easier to understand in my opinion.

    • @AnkitSingh-wq2rk
      @AnkitSingh-wq2rk 2 года назад

      but its complexity is higher in terms of theory as you are adding an O(N) operation of creating substring for every expand from middle call

  • @shantanurathore1297
    @shantanurathore1297 3 года назад

    Nice work bro🔥

  • @mikasaackerman2694
    @mikasaackerman2694 4 года назад

    Nice Explanation!! Just one question.... Can anyone explain why the return statement was right-left-1 instead of right-left+1? The latter one makes more sense.

    • @princepuri1188
      @princepuri1188 3 года назад

      this is because we have to exclude the incremented left and right where the conditions of the while loop broke and we want to have the length till, the string was palidrome.

  • @deepondas5001
    @deepondas5001 2 дня назад

    Great explanation

  • @nandanimadhukar
    @nandanimadhukar 3 года назад

    Great Video!

  • @YNA64
    @YNA64 4 года назад

    sorry at 11:00 why wwill the index the we are at be the center of a palindromic sub string?

  • @MrUGOTpwNEDbyme
    @MrUGOTpwNEDbyme 4 года назад

    great stuff!

  • @xuebindong4803
    @xuebindong4803 3 года назад

    Thank you man!

  • @omnilash93
    @omnilash93 4 года назад +1

    for Input: "abcdefg" this returns "g", expected is "a" result is 'accepted'. Great video btw.

    • @fatiharslan7849
      @fatiharslan7849 4 года назад

      if the lengths are equal it doesn't matter what you return

    • @theVSORIGINALs
      @theVSORIGINALs 3 года назад

      i think its GFG one