Update deep_flatten.md

This commit is contained in:
Rohit Tanwar
2018-01-18 17:02:59 +05:30
committed by GitHub
parent 51a6d4106b
commit 08b40804cd

View File

@ -20,651 +20,6 @@ def spread(arg):
result = []
result.extend(spread(list(map(lambda x : deep(x) if type(x) == list else x,arr))))
return result
```
```python