10:46 there is one error for minval the if condition should be like self.left.value == None. Because if there is a value for node then there is a left and right nodes even, according to the code described for creating nodes. So, the only condition for checking if its a extreme left is to see self.left.value. Same thing goes for maxval.
@bishtman123 жыл бұрын
Agree, another to do it could be: self.left.left == None, return self.left.value
@SidharthShambu6 жыл бұрын
How many really understood this?
@adityawadikar93264 жыл бұрын
True brother...
@saiprasad34032 жыл бұрын
I didn't understand bro
@PG03TheGod2 жыл бұрын
Neh
@nikhilsrivastava23095 жыл бұрын
the code had some errors this is the complete corrected code
@P_Narendra10 ай бұрын
5:56
@shobhitchaturvedi48666 жыл бұрын
Excellent Presentation
@siddharth.chandani2 жыл бұрын
17:52 WHY IN ELIF CONDITION WE ARE CHECKING ONLY self.left.isempty() ? WE SHOULD CHECK FOR self.right.isempty() ALSO IF ANYONE KNOW THIS PLEASE EXP.
@Someshsunariwal5 жыл бұрын
def isempty(self): return self.value == None give me the AttributeError: 'Tree' object has no attribute 'value'