This commit is contained in:
Rohit Tanwar
2018-01-17 15:20:01 +05:30
committed by GitHub
parent 870da07d57
commit 4655b9cc8d

View File

@ -20,117 +20,8 @@ def spread(arg):
result = []
result.extend(spread(list(map(lambda x : deep(x) if type(x) == list else x,arr))))
return result
```
```python
deep_flatten([1, [2], [[3], 4], 5]) # [1,2,3,4,5]
```
```