Update README.md

This commit is contained in:
Rohit Tanwar
2018-01-18 17:04:54 +05:30
committed by GitHub
parent 9c26285f87
commit 3081763d9a

View File

@ -95,6 +95,7 @@ def spread(arg):
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]
```