Nested Sum
Assignment
root = [
1,
2,
[3, 4]
]
print(sum_nested_list(root))
# 10root
βββ scripts.txt (5 bytes)
βββ characters (dir)
β βββ zuko.txt (6 bytes)
β βββ aang.txt (7 bytes)
βββ seasons (dir)
βββ season1 (dir)
β βββ the_avatar_returns.docx (8 bytes)
β βββ the_southern_air_temple.docx (9 bytes)
βββ season2_notes.txt (10 bytes)Solution
Last updated