Product of Array Except Self - LeetCode 238 Python

Поделиться
HTML-код
  • Опубликовано: 13 янв 2021
  • Explaining Product of Array Except Self in Python
    Code: github.com/deepti-talesra/Lee...
    Music: Bensound
    Lemme know up if you have any comments or any questions at all!:)

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

  • @vodinaefem6093
    @vodinaefem6093 5 месяцев назад +1

    The best explanation I've seen on this, Thank You !

  • @suspiriok
    @suspiriok 3 года назад +5

    The best explanation of an algorithm so far out of the videos I have seen. First of all, she knows what she is talking about and clarifying each detail to make sense for us.

  • @divyatalesra4767
    @divyatalesra4767 3 года назад +6

    Wowwwww thank u for the amazing explanation!! This helped me pass my classes!!

  • @MIDNightPT4
    @MIDNightPT4 5 месяцев назад +1

    No way they expect people to come up with this on the spot...

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

    By far the best explanation to this problem I've seen! Thank you

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

    Thank you for explaining it so clearly. And actually knowing it clearly.

  • @TrungPham-bx6ww
    @TrungPham-bx6ww Год назад +1

    extremely loved your way of explanation !

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

    Explanations are very clear. Thank you

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

    best explanation for sure. thank you!

  • @sasonbraha4599
    @sasonbraha4599 10 месяцев назад +1

    Really great explanation!

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

    btw u bring nice nice questions to ur channel 🔥

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

    Well explained, I am solving some LeetCode problems now. Thanks for sharing

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

    samajh nhi aya par aapko dekhkr acccha laga

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

    nice explanation although to avoid complexity better to go left to right first rather than reversing it. I find your solutions efficient with good examples.

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

    hey ! Thanks for good explanation .

  • @pawankumar-qg9wj
    @pawankumar-qg9wj Год назад +1

    finally understand it after this video😀😀

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

    Is it a requirement to do the solution in a single function?
    What if we do 2 functions:
    1. function that returns the product of everything in an array
    2. another function that generates a list without i. i.e., (list = original_list[:i] + original_list[i+1:]):. We pass that list through the first function and get the product of every element and append the result to the final list

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

    WEll understood. Thanks sis

  • @diwasmainali1
    @diwasmainali1 6 месяцев назад +1

    thank you sooo much

    • @DEEPTITALESRA
      @DEEPTITALESRA  6 месяцев назад

      Ofc!! SO happy to help thanks James:))

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

    Very good explanation

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

    Awesome.

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

    Deepthi Your are amazing !!!!! Beauty with brain Good addition to coding community

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

    498. Diagonal Traverse
    can you plz do this?

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

    U r a goddess!!!

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

    isGoodContent = true;

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

    I enjoyed your work so much. I've been trying to search for video that really teaches the ideas in this vid. 🧑‍⚕️Your video totally reminds me of the vids from this smart med student Dr Ethan. Ethan's demonstrations are actually knowledgable and he actually helped me a lot on my studies! He is an educational Doctor in Nottingham and he talks about medical school.
    Go watch his RUclips out and give the health enthusiast a like over here! 👉 #DrEthanEducational

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

    Better would have been to first use a loop to find multiplication of whole list and store it in variable x
    Then apply second for loop on same list by dividing each variable with x and change its value
    Space will be O(1) in this case as proposed to O(N) in yours