updated line 46 in Hashmap, lines 33-34 in 2-3 Tree, per feedback from Xiaochen

This commit is contained in:
joeyajames
2016-06-11 20:32:57 -07:00
parent defab5ec7f
commit 12892f77aa
2 changed files with 1 additions and 2 deletions

View File

@@ -43,6 +43,7 @@ class HashMap:
if self.map[key_hash][i][0] == key:
self.map[key_hash].pop(i)
return True
return False
def print(self):
print('---PHONEBOOK----')