initialize random objects

This commit is contained in:
Jacob Delgado 2023-07-07 23:38:17 -07:00
parent f61d54b662
commit 10dd9d25df

View File

@ -6,19 +6,21 @@ def insert(self, val):
:type val: int :type val: int
:rtype: bool :rtype: bool
""" """
return True
def remove(self, val): def remove(self, val):
""" """
:type val: int :type val: int
:rtype: bool :rtype: bool
""" """
return False
def getRandom(self): def getRandom(self):
""" """
:rtype: int :rtype: int
""" """
return getRandom