Super explanation sir❤. Keep uploading more videos...
@techwithsaketh5 ай бұрын
Thank you, I will 😊
@Krishna_teja6 ай бұрын
Bro leet code ani sums explain cheyataniku chudu bro ni explanation bagundi
@techwithsaketh6 ай бұрын
I will try to solve them bro 😊
@python-developer5214 ай бұрын
how to add List Node() at the begining code
@techwithsaketh4 ай бұрын
we just create a node using the ListNode class which upon calls the constructur with two values as val and next # class ListNode: # def __init__(self, val=0, next=None): # self.val = val # self.next = next res=ListNode(0)