travis_commit

This commit is contained in:
Rohit Tanwar
2018-01-16 15:15:03 +00:00
parent b8e2218140
commit 12efb877f5
2 changed files with 5 additions and 1 deletions

View File

@ -6,6 +6,7 @@ Use recursion. Use `list.extend()` with an empty array (`result`) and the spread
```python
def spread(arg):
ret = []
for i in arg:
@ -20,6 +21,7 @@ def spread(arg):
result.extend(spread(list(map(lambda x : deep(x) if type(x) == list else x,arr))))
return result
```
```python