We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
#Node is defined as#self.left (the left child of the node)#self.right (the right child of the node)#self.info (the value of the node)definsert(self,val):node=self.root#AccessingrootnodeifnodeisNone:#Checkingiffirstnodeisemptyornotself.root=Node(val)returnnode#self.rootwhilenodeisnotNone:#conditiontrueifnodeisnotnoneifval>node.info:#ifgivenvalueisgreaterthannodeinfovalueifnode.rightisNone:#ifrightsubtreeofthenodeisemptynode.right=Node(val)returnnode=node.rightelse:ifnode.leftisNone:#ifleftsubtreeofthenodeisemptynode.left=Node(val)returnnode=node.leftreturnnode
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Climbing the Leaderboard
You are viewing a single comment's thread. Return to all comments →
****Code Below