Update README.md

This commit is contained in:
Rohit Tanwar
2018-01-18 17:04:15 +05:30
committed by GitHub
parent 08b40804cd
commit 9c26285f87

648
README.md
View File

@ -94,653 +94,7 @@ 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]
```