Product of Array Except Self - Leetcode 238 - Python

Поделиться
HTML-код
  • Опубликовано: 28 июн 2024
  • 🚀 neetcode.io/ - A better way to prepare for Coding Interviews
    🐦 Twitter: / neetcode1
    🥷 Discord: / discord
    🐮 Support the channel: / neetcode
    Twitter: / neetcode1
    Discord: / discord
    ⭐ BLIND-75 SPREADSHEET: docs.google.com/spreadsheets/...
    💡 CODING SOLUTIONS: • Coding Interview Solut...
    💡 DYNAMIC PROGRAMMING PLAYLIST: • House Robber - Leetco...
    🌲 TREE PLAYLIST: • Invert Binary Tree - D...
    💡 GRAPH PLAYLIST: • Course Schedule - Grap...
    💡 BACKTRACKING PLAYLIST: • Word Search - Backtrac...
    💡 LINKED LIST PLAYLIST: • Reverse Linked List - ...
    Problem Link: neetcode.io/problems/products...
    0:00 - Read the problem
    2:09 - Drawing Explanation
    9:47 - Coding Explanation
    leetcode 238
    This question was identified as an interview question from here: github.com/xizhengszhang/Leet...
    #product #array #python
    Disclosure: Some of the links above may be affiliate links, from which I may earn a small commission.
  • НаукаНаука

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

  • @NeetCode
    @NeetCode  2 года назад +42

    🚀 neetcode.io/ - A better way to prepare for Coding Interviews

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

      please help , is it okay to use inbuilt functions, for example i used the math.product() like this
      import math
      from functools import reduce
      def product(nums: list[int]):
      prod=list()
      for idx,num in enumerate(nums):
      mux = nums.copy()
      mux[idx] =1
      prod.append(math.prod(mux))
      #print(mux)
      #prod = [num*x for x in prod]
      return prod

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

      Sometimes you skip through the time complexity explanation. With division, how would it be o(n) ... You need to multiply all elements and THEN loop through ...oh I see
      It's o(n + n) which is o(n)

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

      isn't the memory complexity O(n).since u create a whole new list

    • @grandemcfloofin8376
      @grandemcfloofin8376 Год назад +2

      @@thamaraiselvan8940 Technically it is but according to Leetcode, it is not for this problem. Refer to this line from the problem description on Leetcode:
      "Follow up: Can you solve the problem in O(1) extra space complexity? (The output array does not count as extra space for space complexity analysis.)"

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

      @@vusumuzindhlovu yo never do that, the interviewers do not like that kinda thing man

  • @AndrewAffolter
    @AndrewAffolter 10 месяцев назад +272

    This problem is insane. After going through the explanation and the code initially I still didn't get it. I can't imagine coming up with this on the spot in an interview.

    • @luiggymacias5735
      @luiggymacias5735 4 месяца назад +54

      thank god im not the only one, i feel bad when i cannot come up with a solution, but seen other humans struggle make me feel better, im not a genius and i have to accept it

    • @khalidhussien6764
      @khalidhussien6764 4 месяца назад +32

      yeah, this is what we call a "crackhead" problem. 'Cuz no way you can come up with THAT solution unless you're a crackhead.

    • @killpointx
      @killpointx 3 месяца назад

      @@luiggymacias5735*I did!* but this one is better! Keep coding

    • @sinnohperson8813
      @sinnohperson8813 3 месяца назад +1

      nah i did come up with something similar , so its definitely intuitive enough but i took a lot of time but thats me

    • @nawzyah
      @nawzyah 3 месяца назад +12

      @@sinnohperson8813 I'm sure you've seen this pattern before or something similar. There's just no way

  • @rishatzak
    @rishatzak Год назад +378

    For ones, who did not understand how prefix-postfix works, lets change 1, 2, 3, 4 positions to symbols like a, b, c, d, so multiplying will be:
    prefix:
    ->
    | a | a*b | a*b*c | a*b*c*d |
    postfix:

    • @hashtagaroma7778
      @hashtagaroma7778 Год назад +16

      wow this made it click for me. thanks bro

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

      Thanks for this. I never thought about writing it out as tiny equations but that makes it a lot clearer.

    • @viraje7940
      @viraje7940 Год назад +48

      prefix:
      | 1 | a | a * b | a * b * c |
      postfix:
      |b * c * d | c * d | d | 1 |

    • @user-lo5lp7zr9g
      @user-lo5lp7zr9g Год назад +7

      thank you. I only understood the operation and not the principle, but through your abstract explanation, I just understood enough to punch myself in the thigh 5 times!

    • @HarshitaSingh-bn1kp
      @HarshitaSingh-bn1kp Год назад

      @@viraje7940 I guess even for postfix we start with 1 at the end.

  • @symbol767
    @symbol767 2 года назад +331

    Bro how do people manage to figure out these solutions?
    You're some geniuses

    • @andylinkOFFICIAL
      @andylinkOFFICIAL 2 года назад +109

      No one just simply stumbles across this solution. It must have taken days for someone to figure this out.

    • @ncba
      @ncba 2 года назад +122

      @@andylinkOFFICIAL we need that in 30mins during your
      interview

    • @mangalegends
      @mangalegends 2 года назад +63

      @@andylinkOFFICIAL Looks like you're correct. After a quick read on the history of Kadane's algorithm (used to solve the maximum subarray problem), I'm inclined to think that a lot of the people that came up with these solutions were very intelligent professors in math or computer science and had a lot of time to come up with them (for the most part), and they were also improving on each other's design.
      From wikipedia:
      "The maximum subarray problem was proposed by Ulf Grenander in 1977 as a simplified model for maximum likelihood estimation of patterns in digitized images.[5]
      Grenander was looking to find a rectangular subarray with maximum sum, in a two-dimensional array of real numbers. A brute-force algorithm for the two-dimensional problem runs in O(n6) time; because this was prohibitively slow, Grenander proposed the one-dimensional problem to gain insight into its structure. Grenander derived an algorithm that solves the one-dimensional problem in O(n2) time,[note 1] improving the brute force running time of O(n3). When Michael Shamos heard about the problem, he overnight devised an O(n log n) divide-and-conquer algorithm for it. Soon after, Shamos described the one-dimensional problem and its history at a Carnegie Mellon University seminar attended by Jay Kadane, who designed within a minute an O(n)-time algorithm,[5][6][7] which is as fast as possible.[note 2] In 1982, David Gries obtained the same O(n)-time algorithm by applying Dijkstra's "standard strategy";[8] in 1989, Richard Bird derived it by purely algebraic manipulation of the brute-force algorithm using the Bird-Meertens formalism.[9]"

    • @classified022
      @classified022 2 года назад +61

      @@mangalegends A lot of people that came up with these algorithms took entire Phds to come up with them

    • @symbol767
      @symbol767 2 года назад +65

      4 months later I just came back to this problem and managed to actually solve it on my own without looking at the solution. Woo

  • @Septix
    @Septix 2 года назад +421

    Quality is just unparalleled, the way you break down things is god-sent neet. First paycheck I get at a top company, I'll be sending things your way. Truly thank you neet!

  • @trevorbye6965
    @trevorbye6965 2 года назад +437

    there's literally no way anyone would ever come up with this algorithm on their own without seeing this exact problem before lol. these are the kinds of leetcode problems that are completely pointless to ask a candidate; you either see them solve some solution they memorized, or they give you n^2, neither really tell you anything about their ability

    • @lcppproductions7910
      @lcppproductions7910 Год назад +71

      For this problem, I was able to come up with the general idea for the solution in about 20 minutes, and then another 20 minutes or so to code it w/o seeing the problem before. I was running into problems with submitting without getting time limit exceeded because I did the suffixes first and was pushing to the front of a vector (which is an O(n) operation), but I'm guessing that wouldn't be a huge deal during an actual interview. I do agree however that the intuition for most medium to hard LeetCode problems (and even some easy's tbh) is really hard to come by without doing A LOT of them and getting a feel for the different patterns and strategies you can apply. What I've found in general for the difficulty tags is that they usually describe how far of a logic gap there is between the problem you're given and the solution, rather than how hard it is to code. Some problems labeled hard are actually relatively easy to code if you know the solution ahead of time, but coming up with it is a different story because of how many leaps in logic you have to go through to arrive there.
      I will say however that during interviews what they're usually looking for is how you approach a new problem and how you go through and communicate your thought process. A lot of the times they can tell if you've seen a problem before if you jump immediately to the solution without clear logic, and for some interviewers they actually see it as a waste of time if you obviously have seen the problem before since it's supposed to be new. Sometimes, they can even have a number of questions to ask you if you've seen it before.
      My biggest issue with these questions is that they're more about solving math problems (i.e. Computer Science) than actual software engineering. The main reason that they are asked is because it's a standardized way to test algorithmic thinking for people coming from a variety of backgrounds without requiring candidates to have advanced industry knowledge.

    • @SuperGojeto
      @SuperGojeto Год назад +35

      Yeah totally agree. I hate this culture every company is trying to take this approach nowadays .

    • @drench1580
      @drench1580 Год назад +16

      I solved this a different way in linear time but you your right no one is coming up with this solution on their own in 30minutes

    • @leeroymlg4692
      @leeroymlg4692 Год назад +42

      that's what I'm saying. I'm going through these leetcode walkthroughs to learn fundamentals and techniques on how to solve leetcode problems on my own . But this one left me feeling like I learned nothing from it besides memorizing the solution.

    • @AlFredo-sx2yy
      @AlFredo-sx2yy Год назад +5

      @@lcppproductions7910 your time would be an issue because 40 mins for 1 problem is already 90% of the interview time for just 1 problem...

  • @dylanmartin998
    @dylanmartin998 2 года назад +67

    Absolute legend, this problem almost shouldn't be medium, the logic of doing this without division is mind bending without your explanation

    • @holo23
      @holo23 2 года назад +16

      I think this is what a medium should be
      Hard problems in leetcode have hidden mindbreak tags on them

  • @mapo5959
    @mapo5959 2 года назад +30

    You have to be super genius to have the intuition to come up with these kind of solutions first time in an interview. Unless there is a reliable systematic way to determine the problem space of the optimal solution you got to memorise the pattern. wtf.

    • @sanjeevsinha-in
      @sanjeevsinha-in 2 года назад +19

      Seriously, how one can come up with this approach in interview when facing this problem for the first time? this does not help.

    • @scythazz
      @scythazz 2 года назад +9

      @@sanjeevsinha-in You will only be able to come up with the optimal solution by having already done the question.. That's why you are doing leetcode right? HAHA.

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

      @@sanjeevsinha-in You won't be able to. What I've seen is that interviewers give you hints, so that sort of helps in arriving at atleast a working solution. As for the optimal solution, again, if they give hints, it shouldn't be extremely difficult, atleast from my experience. However, I do agree that this problem is ridiculously frustrating.

  • @jaspindersingh3097
    @jaspindersingh3097 2 года назад +103

    I tried to understand the problem the way you taught and finally solve it on my own. I was able to produce the exact same code as you did, because the explanation was so detailed. I think moving forward, I need to spend a lot more time studying the logic before coding anything. I have an interview coming up and this insight will definately help me.

    • @jaspindersingh3097
      @jaspindersingh3097 2 года назад +191

      Update: thanks to this guy. I got the job.

    • @varunshrivastava2706
      @varunshrivastava2706 2 года назад +13

      @@jaspindersingh3097 Congratulations Man, In which company?

    • @ParryHotter73
      @ParryHotter73 Год назад +2

      Yeah this, I used to start code right away and often get least optimal or inaccurate solution

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

      @@jaspindersingh3097 congratulations.......

    • @nexolec109
      @nexolec109 11 месяцев назад

      congrats

  • @deeprony7
    @deeprony7 2 года назад +175

    Don't think I want a job anymore 🤣

    • @samuelpickering8557
      @samuelpickering8557 Год назад +10

      Did you get a software engineering job?

    • @luiggymacias5735
      @luiggymacias5735 4 месяца назад +1

      did you get the job?

    • @oii0712
      @oii0712 3 месяца назад

      No bro just gave up after looking at the solution​@@luiggymacias5735

    • @ahmedsafwat3488
      @ahmedsafwat3488 2 месяца назад

      Did you get the job ?

    • @azka9075
      @azka9075 Месяц назад

      Have you gotten the job?

  • @sharmanihal99
    @sharmanihal99 4 месяца назад +13

    Interviewer: BTW you can't use the division operator.
    Me : Uses pow(num,-1).
    Interviewer:😲

    • @zappy9880
      @zappy9880 Месяц назад +2

      I tried with repeated subtraction but somehow it still figures it out. I guess LeetCode has a custom compiler or something.

    • @thehomiebearfifa3528
      @thehomiebearfifa3528 Месяц назад

      lmao

  • @AB-sd9gx
    @AB-sd9gx 10 месяцев назад +8

    One important thing that lacks in this explanation, is the familiarity with the concept of "Prefix/Postfix Sum". I watched this solution without knowing that hence I was stuck but after knowing it I understood this.

    • @sola2943
      @sola2943 2 месяца назад +1

      This comment helped me. I didn't know this was a recognized computer term, I thought it was a math term. There doesn't seem to be a lot of videos on youtube about it but knowing that it's a CS term, I was able to look it up (the terms are prefix sum array and postfix sum array) and now I understand the principle of the solution.

  • @Exanji89
    @Exanji89 Год назад +4

    This problem was extremely difficult for me to understand, thank you for explaining so clearly!

  • @100timezcooler
    @100timezcooler Год назад +7

    idk y i struggled so much with this one. i spent like 4 hours trying to think of the the linear solution. i really felt dumb and not cut out for this.

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

    I admire your ability to explain the solutions so well! Finding the solution at all is half the battle, the other half is being able to explain it well to the interviewers, especially when English is not your first language.

  • @demiladeoyedele8839
    @demiladeoyedele8839 2 года назад +44

    How can I like a video multiple times? This is extremely well-explained, man! Thank you for creating this video. You are an inspiration!

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

    Thank you so much for making these videos! You explain the problem and present the solution very clearly.

  • @vdyb745
    @vdyb745 2 года назад +9

    I have never been able to get this right until I saw this explanation. You seriously rock !!

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

    love the way you explain. Easy, crisp and perfect :)

  • @shoooozzzz
    @shoooozzzz 2 года назад +30

    Not using the extra memory really impacts the code's readability. Unless there is serious performance requirement, write readable code not clever code.

    • @fahadfreid1996
      @fahadfreid1996 Год назад +14

      Pretty much all of Leetcode's problems' solutions are an antithesis to how you SHOULD be writing software in an enterprise app, where readability and test-ability is far more important than saving a minute amount of memory or CPU cycles.

    • @user-xk2zy3ng1o
      @user-xk2zy3ng1o Год назад +1

      Yes, but readability is not a concern during the interviews

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

      @@fahadfreid1996 That's true. Interesting question though... How important is clean code (variable naming, small functions and unit testing, etc) for such type of tech interviews?

  • @milanthakkar9493
    @milanthakkar9493 2 года назад +6

    love your clear explanations, keep doing what you're doing man - you're amazing!!

  • @Joy8131
    @Joy8131 2 года назад +37

    I had my Amazon interview yesterday and was asked this question, I did the brute force solution and cleared the interview, but this solution is genius!

    • @icychains24
      @icychains24 2 года назад +7

      By brute force do you mean an O(n^2) solution with nested loops?

    • @_Ahmed_15
      @_Ahmed_15 2 года назад +8

      Amazon lets you move on using brute force? Did you get an offer?

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

      .

    • @Call-me-Avi
      @Call-me-Avi 2 года назад +13

      @@_Ahmed_15 just coming up with a solution is good enough on the spot. Your thought process and how you go about analyzing the problem matters more. You won't be solving these kind of problems in a company. they just wanna check if you can understand the problem well and come up with a solution.

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

      @@Call-me-Avi still, the brute force for this is way too easy no? Like way too easy !!!

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

    Thanks, man, you are great. I love listening to your solutions and trying to implement them myself before going through your walkthrough. The value is unparallel.

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

    The way you explain the problems is so much easier to understand than some of the official LeetCode videos. Thanks so much for being articulate 🙏

  • @snoopyjc
    @snoopyjc 2 года назад +36

    The reason you can’t do it with a divide is the second test case in the problem and a minor issue called a DIV0 error

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

      I think we can still write a version with division, its just there will be several if statement to deal with 0s in the array :)

    • @dera_ng
      @dera_ng 2 года назад +7

      @@jerryteps I tried doing this, it's messy.

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

      @@dera_ng Can confirm, most of your time will be spent tackling those edge cases.

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

      Actually this constraint stops us from trying a buggy solution.

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

      ​@@dera_ng not really, just use two boolean variables to check if array contains one zero or multiple zeroes,
      and then use an if else condition to answer accordingly

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

    problems after your explanation become so transparent and understandable. Thank u so much

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

    This process is extremely clear to understand.

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

    I was also thinking in this direction of prefix and postfix. But at starting and ending you assumed to put 1. I was not able to assume this case. By your explanation it got crystal clear. Thank You so much

  • @ovuokeaghwotu2389
    @ovuokeaghwotu2389 2 года назад +11

    Hey there. I just want to say thank you for making these videos!

  • @VarijaYanamadala-ed2zg
    @VarijaYanamadala-ed2zg 2 месяца назад

    Absolutely loved it! Cant believe that you made it easy as a cake walk.
    Thank you!

  • @wanpanman8011
    @wanpanman8011 Год назад +5

    I didn't understand why the final method of O(1) space complexity? I thought the space complexity will also be O(n)? as we're storing "n" number of values where "n" is the size of the first array?

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

      Because the output array doesn't count towards the limit (per the instructions). its basically cheating

  • @nirvikdas619
    @nirvikdas619 2 года назад +6

    I had difficulty understanding the explanation. But it turns out that I didn't know how the postfix and prefix traversals worked. Understanding them helped me understand your explanation better.

    • @palatonian9618
      @palatonian9618 2 месяца назад

      Thank you for this comment, I have been scanning comments to get a better understanding of the logic. I get how the code works after seeing the video but I still don't understand the logic and you have given me a much needed clue. If you see this, was there a resource that helped you understand traversals better?

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

    Thanks for the sheet, we love you 3000!

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

    Im so glad you exist. Thank you kind sir.

  • @kamikamen_official
    @kamikamen_official 7 месяцев назад +1

    These kind of problems make me feel stupid. Thanks for the breakdown, this made sense!

  • @daniyalkabir6527
    @daniyalkabir6527 Год назад +2

    Super helpful, Thank You!

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

    Nice and clear. Plx keep up the good work!

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

    What do you use for your note/drawling program? Color switching seems slick

  • @ishangujarathi10
    @ishangujarathi10 9 месяцев назад +1

    concept of prefix product and postfix product is amazinggg!!

  • @bestchannels3471
    @bestchannels3471 Год назад +6

    why does the result array not count for the space complexity? In my opinion the solution is still in O(n) because of the result array. O(1) is only possible if we use the input array and manipulate it, but thats not possible here. Or do I miss something?

    • @julioagueros
      @julioagueros 2 месяца назад

      I think he just said the problem states it would not count

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

    the moment I saw the prefix, postfix on the screen, I got the approach
    absolutely brilliant, thanks a ton

  • @rodo2220
    @rodo2220 Месяц назад

    honestly didn't even know what the problem was asking me to do. thank you

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

    Amazing concise explanation. Thanks bro

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

    It's a cake walk. Love your explanations!!!!

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

    Great Explanation

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

    Third time I am trying to figure out this problem, this explanation was the best. I hope I will remember it...

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

    Thanks a lot for your great content! It allows me to gain insights immediately to the problem via your clear explanations.

  • @xTatsuran
    @xTatsuran Год назад +4

    First problem I totally failed to solve myself =( Thank you for your explanation, video made me unstuck finally

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

    Take a bow! Very helpful explanation.

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

    awesome explanation dude!

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

    Keep doing man, your content is amazing!! Love from India ❤️💜

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

    Just asking can you use a sliding window for this

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

    Wow that's a really clever way to reduce the space complexity

  • @SurfsUpSeth
    @SurfsUpSeth 11 месяцев назад

    I never would have gotten that, that's actually wild, I don't get tripped up by the hard questions on leetcode but the medium weird ones like this lol.

  • @connorbunch3577
    @connorbunch3577 20 дней назад

    Thank you so much for this video! You are talented at explaining things!

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

    Wow!!! This is another level of genius

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

    Great video and explanation

  • @mr.plua123
    @mr.plua123 7 месяцев назад

    what textbook would you recommend for someone trying to better their understanding of Data Structures and Algorithms?

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

    that was a lot to take in! Really!

  • @nimeshpareek953
    @nimeshpareek953 11 месяцев назад

    Neetcode is the best, coded the solution with extra space complexity myself now moving to a better space solution.

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

    What a great explanation!

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

    Thank you soooooooooo muchhhhhh ..
    My guy you have helped me a lotttttt

  • @athiya_b
    @athiya_b 2 месяца назад

    I am glad that I understood by going through this explanation, but afraid I wont remember in real interview

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

    Good Explanation!! Thanks!

  • @Ratmirsh
    @Ratmirsh 9 месяцев назад +2

    the best leetcode solution explainer with python on YT. Yet haven't seen one with such quality

  • @kovy2005
    @kovy2005 3 месяца назад

    Thank you, also easy to write and readable.

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

    Tried solving this one and was literally timing out of the solution window. I would have never thought of this had I not looked at solutions.

  • @sar3388
    @sar3388 29 дней назад +1

    I now feel DSA is just about brain muscle memory and you can have your best brain muscle memory by seeing and solving more such problems.

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

    Wonderfully explained really appreciate the work !

  • @OwNeDGr
    @OwNeDGr 5 месяцев назад

    Excelent approach!

  • @SandhyaSubramani14
    @SandhyaSubramani14 3 месяца назад

    So my question is as follows: In the working explanation, we multiply for the values at the prefix and postfix positions (i-1) and (i+1) and store them in i. How come while coding it up, the range of the for loop isn't changing to accomodate those shifted products?

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

    Thank you for your solution. But I don't quite understand in the second loop why it needs to iterate to -1, not 0? Thank you so much in advance!

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

    How do you make your videos? I'm really enjoying the content!

  • @Anirudh-cf3oc
    @Anirudh-cf3oc Год назад

    Very nice explaination!!

  • @servantofthelord8147
    @servantofthelord8147 Месяц назад

    That optimal solution grows crazy - wow

  • @ptd3v
    @ptd3v Месяц назад +1

    5:12 - This is where I completely lost you, I've tried understanding this for so long. Maybe software engineering isn't for me, I have no idea how anybody would ever figure this out on the spot.

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

    I had a doubt regarding the division operator solution, for the second test Case when one of the element is 0, The product of all elements will become 0, how do we handle it?

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

    Hey can you please share that blind 75 excel sheet of yours. would be really helpful

  • @samuelemorinken4125
    @samuelemorinken4125 18 дней назад

    This is very good man, i really hope I get good at Dsa one day

  • @seunadewola3523
    @seunadewola3523 4 месяца назад

    My initial thought was to find the product of the array and divide that product by the values in the positions

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

    Ill never get into an entry level pos. I could not even figure out prefix postfix solution let alone with only using 1 array.

  • @Sn-ik1qx
    @Sn-ik1qx 5 месяцев назад

    Great video. Can we do res[i] *= prefix in line 7? since we are multiplying only by 1 anyway.

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

    Neetcode is well-suited name for this channel as how neatly and clearly you explain the intuition. Thanks

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

    It is questions like this which makes learning dsa even more exciting. I know a lot of folks might be thinking am I crazy to say that but I see learning dsa as a cool skill which I can flex upon those who haven't just practiced enough. Yes "practiced enough" coz eventually anybody who has practiced consistently months over months would be at this level of thought. Sounds crazy right?

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

    thank you so much!

  • @KaranBulani
    @KaranBulani 11 месяцев назад +1

    product = 1
    prefix = []
    for num_val in nums:
    product = product * num_val
    prefix.append(product)
    product = 1
    postfix = []
    for i in range(len(nums) - 1, -1, -1):
    product = product * nums[i]
    postfix.insert(0, product)
    res=[]
    for i in range(len(nums)):
    left = prefix[i-1] if i - 1 >= 0 else 1
    right = postfix[i+1] if i + 1 < len(nums) else 1
    res.append(left * right)
    return res
    this is the unoptimized code which he was talking about

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

    can some explain why the space was not O(n) even though the result array was made

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

    That’s the reason google hire you. Before watching your videos I thought I am now a python programmer but after watching your videos I realise I am very far and I need to learn a lot.

  • @pitchblack408
    @pitchblack408 Месяц назад

    This is the first one that I got stuck on. What do you recommend when getting stuck on the problem? Doing the problem over and over again? Or understand the solution and move on to the next without checking it off? Or moving on the next and checking it off?

  • @stankorotun1049
    @stankorotun1049 Год назад +2

    I think it's a really stupid question because of the limitations they place on the problem. The calculate the product for all nums and use division for each index is such a straightforward and simple solution which you are not allowed to use for some reason. Like I can't imagine that you would be writing software and you come up with something that is efficient, easy to understand and intuitive and then say forget about that we're gonna write a more complicated solution.

  • @heaven3452
    @heaven3452 4 месяца назад

    Thank you so much for the visualization, tried to code it up myself before watching your solution and it worked like a charm. for anyone still wanting to try for themself just skip to the start of drawing and look at it.

  • @Dan-dg2pc
    @Dan-dg2pc 8 месяцев назад

    Does it not break if there is a zero in the middle of the given array?

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

    I don't get it. Why the space is still O(1)? If we increase the numbers, we needs more memory to store our answers. So it should be O(n). Why wrong

    • @CoinBahd
      @CoinBahd 3 месяца назад +2

      Space complexity is O(1) because the problem specified the result array does not count towards the space complexity. Kinda stupid

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

    Good stuff.

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

    help me understand, isn't the time complexity here a o(n*n) since we going over the array twice once in order and other in reverse ?

    • @mastone5949
      @mastone5949 2 года назад +10

      One loop: O(n) Another loop: O(n) Total -> O(2n). We remove the constant 2, so we have O(n). If the loops were nested, then yes, this would be O(n^2).
      In this case, we only ever traverse a given array twice. An array of a thousand elements is only two traversals.
      If loops were nested, then we would make one extra traversal for every element in the array. An array of a thousand elements is a thousand extra traversals.

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

      @@mastone5949 thank you for clarifying, do you have any recommendation where I can learn more about big o analysis ?

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

      @@SnipeSniperNEW Top few results on RUclips are enough unless you want to get deep into details. In that case, there are whole books on the topic. Most job interviews will just ask you to quickly assess time and space complexity in simplified form.

  • @the_akhash
    @the_akhash Год назад +7

    The restriction on division operation is also put in place to avoid the 'Division by Zero' error as some elements in the array could contain the integer 0. Just wanted to add that here.

    • @meirbnb
      @meirbnb Год назад +4

      those edges cases could be handled separately, that was what I did at least, as there are only 3 cases: 1) when there is more than 1 zeros, 2) when there is exactly 1 zero, 3) when there is no zero in the array.

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

      You can handle that edge case. I think they restrict division because this problem can be generalized to other operations and the operation being used may not have a good inverse?

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

    thank you so much

  • @hamzaehsankhan
    @hamzaehsankhan 11 месяцев назад +1

    Given `nums = [a, b, c, d]`
    Then answer or the resulting list would be `[b*c*d, a*c*d, a*b*d, a*b*c]`
    The left_pass, after left to right iteration gives `[1, a, a*b, a*b*c]`
    The right_pass, after right to left iteration gives `[b*c*d, c*d, d, 1]`
    Product of left_pass[i] and right_pass[i] would give us the above result. So the cumulative product does make sense in this way.

  • @stunning-computer-99
    @stunning-computer-99 2 года назад +2

    You’re damn good Sir! I am in good hands…

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

    Thank you for the video