learn basic data structure and practice in python
- Queue Link to python documentation
- Stack
- List
- Dict(Map)
- Tree
def preorder(root):
if root:
return [root.val] + preorder(root.left) + preorder(root.right)
else:
return [] pipenv install
pipenv shell