MJP

architect • coder • strategist • musician • educator

Deep Total

Deep Total

Please continue to work in your forked repo from Part 1.

## Instructions

Implement a function that totals an arbitrarily nested list of integers.

## Example

deep_total([1, 2, 3]) # 6
deep_total([1, [5, 10]]) # 16
deep_total([3, [[6]], 9]) # 18