Reorganize snippets

This commit is contained in:
Angelos Chalaris
2023-05-03 21:19:02 +03:00
parent 7511813169
commit 5c913d20bd
1240 changed files with 992 additions and 0 deletions

26
python/s/deep-flatten.md Normal file
View File

@ -0,0 +1,26 @@
---
title: Deep flatten list
type: snippet
language: python
tags: [list,recursion]
cover: mask-quiet
dateModified: 2020-12-29T19:53:45+02:00
---
Deep flattens a list.
- Use recursion.
- Use `isinstance()` with `collections.abc.Iterable` to check if an element is iterable.
- If it is iterable, apply `deep_flatten()` recursively, otherwise return `[lst]`.
```py
from collections.abc import Iterable
def deep_flatten(lst):
return ([a for i in lst for a in
deep_flatten(i)] if isinstance(lst, Iterable) else [lst])
```
```py
deep_flatten([1, [2], [[3], 4], 5]) # [1, 2, 3, 4, 5]
```