min_n and max_n

This commit is contained in:
Rohit Tanwar
2018-01-19 14:59:38 +05:30
parent afe4635119
commit 9cc6625032
4 changed files with 56 additions and 7 deletions

View File

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