added sasslabel

This commit is contained in:
AbhishekVarshney98 2018-10-23 17:24:42 +05:30 committed by GitHub
parent fb20f96e66
commit a50c6b4163
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -25,6 +25,9 @@ class Node:
def setRight(self, right):
self.rigt = right
def sassLabel(self, label):
self.label = label
class BinarySearchTree: