Amazon Interview Question : Program to Print Pascal Triangle | Python Code

Поділитися
Вставка
  • Опубліковано 5 вер 2024
  • Print Pascal Triangle asked in Google & Amazon Interview Questions
    GitHub Link:- github.com/net...
    Playlist of our series-www.youtube.co....
    Facebook: / netsetos-751. .
    Twitter: / netsetos
    LinkedIn: / netsetos
    Quora: www.quora.com/....
    Instagram : www.instagram.....
    #google #interview #netsetos

КОМЕНТАРІ • 28

  • @shortseries5008
    @shortseries5008 2 роки тому +2

    yes, explained very clearly

  • @oxanasf6369
    @oxanasf6369 4 роки тому +2

    It's very clearly explained, thank you!

  • @c1inward346
    @c1inward346 Рік тому

    Thank you miss I fully understood the concept!

  • @amansrivastava834
    @amansrivastava834 3 роки тому

    Maja aa gaya ma'am ...mai faltu mai aur video explore kar gaya..

  • @SaiKrishna-wl1ql
    @SaiKrishna-wl1ql 4 роки тому +1

    Clean and clear ...explanation 👏🏻👏🏻👏

  • @carlbenedictelipan9828
    @carlbenedictelipan9828 2 роки тому +8

    array = int(input("Enter a number: "))
    for i in range(0, array):
    x = 1
    for j in range(1, array - i):
    print(" ", end="")
    for k in range(0, i + 1):
    print(" ", x, end="")
    x = int(x * (i-k) / (k + 1))
    print()
    Hehehehe

  • @mokshanirugutti
    @mokshanirugutti 4 роки тому +1

    Excellent work
    Good explanation

  • @amitfulari8618
    @amitfulari8618 4 роки тому +1

    Nice explaination.....I would like to see some programs....to avoid TLE and memory ...like mamoization

  • @felantsoaarimamy7579
    @felantsoaarimamy7579 Рік тому

    It is so helpful
    Thank you

  • @tadiwamagwenzi3439
    @tadiwamagwenzi3439 4 роки тому +2

    can you explain how to print it in the shape

  • @nafees2085
    @nafees2085 2 роки тому +1

    PLEASE WHAT CODE WILL YOU USE TO GET THE ROW IN A TRIANGLE FORM

  • @yeshu62
    @yeshu62 17 днів тому

    how do i print into pattern??
    and nth row of the pattren
    can you please rply

  • @kumaraniket7037
    @kumaraniket7037 3 роки тому

    If u want to delete last column i.e=1 of row 6 and print all the remaining output what is the code

  • @venubabuvelpuri3303
    @venubabuvelpuri3303 Рік тому

    Mandam can you plz explain this problem matrix having X's and O 's as elements print max area of x's

  • @banhishikhamitra2600
    @banhishikhamitra2600 3 роки тому

    Very clearly explained! Thanks

  • @sabarishravishankar9158
    @sabarishravishankar9158 3 роки тому

    mam why we are taking list of list in this program??

  • @yeshwanthsara4636
    @yeshwanthsara4636 4 роки тому +2

    i want to learn patterns so pls send vaild link

    • @nETSETOStECH
      @nETSETOStECH  4 роки тому

      Hope it will help you. ua-cam.com/play/PLFV6T8f5WU2G6uyHgwc3p8XPkygSU8uNg.html

  • @sirijaiswee05
    @sirijaiswee05 3 роки тому

    Hi sister pythonlo functions use chesi arthemetic operations chepara

  • @raveena2403
    @raveena2403 4 роки тому +1

    How to print it in the triangle pattern?

    • @subhamukherjee3183
      @subhamukherjee3183 4 роки тому +1

      for i in a:
      print(i)
      Just pint using a loop as print gives a new line