Prepare repository for merge

This commit is contained in:
Angelos Chalaris
2023-05-01 22:43:50 +03:00
parent ab1ea476c5
commit a5ca5190e5
169 changed files with 0 additions and 626 deletions

View File

@ -0,0 +1,25 @@
---
title: Deep flatten list
type: snippet
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]
```