mirror of
https://github.com/krahets/hello-algo.git
synced 2025-07-07 15:01:58 +08:00
Polish the content
Polish the chapter preface, introduction and complexity anlysis
This commit is contained in:
@ -67,9 +67,9 @@ def print_tree(
|
||||
print_tree(root.left, trunk, False)
|
||||
|
||||
|
||||
def print_dict(mapp: dict):
|
||||
def print_dict(hmap: dict):
|
||||
"""Print a dict"""
|
||||
for key, value in mapp.items():
|
||||
for key, value in hmap.items():
|
||||
print(key, "->", value)
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user