Generate Parentheses - LeetCode 22 - Python

แชร์
ฝัง
  • เผยแพร่เมื่อ 18 ม.ค. 2025

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

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

    Mam , Please don't stop doing tutorials in python , there is no other channel that teaches data structures in python in more depth.

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

      Aw thanks so much Abhiram! And yes many many more videos coming hehe:))))

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

    As someone not from a computer science background, recursion is something I’ve never gotten. 😅
    The way I solved it is through adding parentheses as a character using sets.
    Works!!
    Recursion is very difficult for me to visualize😅

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

      Haha yea if you're more comfortable with that/prefer it go for it! And def - recursion truly can be really hard to visualize. I do draw it out completely at @1:50 and do another complete walkthrough at @9:04 in case you're interested in seeing it all laid out completely! And def let me know if you do end up watching it and end up having any questions. Rooting for u Sumanth! :))

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

    great thank you

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

    👍

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

    You rock

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

    Thanks, very simple and intuitive explaination.
    There is another way, i remember watching
    nth paranthesis is generated by appending all possible combinations of x and y parantheses such that
    "(" + x + ")" + y where x+y+1 = n