Admin
geplante Erweiterungen
Vorlagen
<details>
<summary>Zusammenfassung Punkt 1</summary>
Hier kommt der ausführliche Inhalt zum Punkt 1
</details>
Header | |
---|---|
text | <details>
<summary>Zusammenfassung Punkt 1</summary> Hier kommt der ausführliche Inhalt zum Punkt 1 def quick_sort(arr):
less = []
pivot_list = []
more = []
if len(arr) <= 1:
return arr
else:
pass </details> |