Split a String Into the Max Number of Unique Substrings | Leetcode 1593

Поделиться
HTML-код
  • Опубликовано: 21 окт 2024

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

  • @ya_xiang1212
    @ya_xiang1212 День назад +2

    omg you are so good.
    Although I haven't learned yet. But I will keep trying. Thanks!

    • @techdose4u
      @techdose4u  23 часа назад

      That's the spirit! 👍🏼

  • @diasneto5231
    @diasneto5231 12 часов назад

    Thank you for the content

  • @MAHALAKSHMIVEERARAJ
    @MAHALAKSHMIVEERARAJ 21 час назад

    Thank you very much for helping to learn!

  • @AmitKumar-cp1oz
    @AmitKumar-cp1oz День назад

    Thanks for the video.

  • @krishnarana9028
    @krishnarana9028 21 час назад

    Thanks for the detailed soln. I wanted to ask , i have started DSA a bit late i was into Android Development before . I have done questions in arrays , strings , bit manipulation and other basics . Can you guide me how to learn dsa further . Will your course be optimum for a noob like me ? Kindly guide me

    • @techdose4u
      @techdose4u  20 часов назад

      If you wanna fast pace your learning in guaranteed 3 months time to cover everything you need then you should consider our LIVE batch.
      I will personally guide you throughout your prep. So, you needn’t worry.

  • @VivekSharma-eh2tv
    @VivekSharma-eh2tv День назад

    amazing

  • @Yatishpujara
    @Yatishpujara 20 часов назад +1

    I just made a look on your website , dont you think 400$ is too much for a college DSA course and that too when your target customers are indian students?

    • @techdose4u
      @techdose4u  19 часов назад

      It is currently 250 USD.
      I think its a fair pricing for 1:1 and small group LIVE bi-directional preparation.
      Otherwise You are always free to take a recorded version for 70 USD :)

    • @Yatishpujara
      @Yatishpujara 19 часов назад

      @@techdose4u So will you tell me , for how much time the live classes will go on and if i want to opt for recorded lectures whats their validity?

    • @techdose4u
      @techdose4u  18 часов назад

      @Yatishpujara You can contact our team for details and discussion on whatsapp

  • @AmitKumar-cp1oz
    @AmitKumar-cp1oz День назад

    Please also add leetcode problem link in description!

  • @codingedtech
    @codingedtech 23 часа назад

    Hi , can you please memomize that in your code video or share here the working code with memomization also :)

    • @techdose4u
      @techdose4u  22 часа назад

      The expectations are not about dp.
      Moreover, you need to generate all possibilities to be sure about the result.

    • @codingedtech
      @codingedtech 11 часов назад

      @@techdose4u but i need dp solution also as i tried but there is some tricky due to involve of backtracking. if you can provide it will be helpful in learning

  • @sailendrachettri8521
    @sailendrachettri8521 День назад

    21 Day completed :)

  • @Sravan4surya441
    @Sravan4surya441 День назад

    please make gfg potd as well

    • @techdose4u
      @techdose4u  День назад

      too tough with my time 🥺

  • @bhavyrastogi2431
    @bhavyrastogi2431 20 часов назад

    why memoization wont work in this ques

    • @techdose4u
      @techdose4u  19 часов назад

      Because a subproblem is dependent on what partitions you had already created (due to the concept of repetitions).

  • @rishurana9655
    @rishurana9655 20 часов назад

    why greedy will not work in this question?

    • @techdose4u
      @techdose4u  18 часов назад

      because you need to know about future to make optimal decisions.
      You can never know what seems unique now will give me optimal split ?
      because maybe the future substring will have repetition conflict.
      ex. ABA
      take A
      take B
      greedily
      But will it be a good option ?
      NO absolutely not.
      next split A will have conflict with first A.
      Even you cant try memoization or DP coz the future is dependent on past selections.
      So, it will be too much to store in table for a subproblem hence recursion would make sense :)