Backup test: различия между версиями
Материал из test
Mih (обсуждение | вклад) Новая страница: «== First == This page is made for backup test == Some other == info» |
Mih (обсуждение | вклад) Метка: отменено |
||
| Строка 6: | Строка 6: | ||
info | info | ||
<syntaxhighlight lang="python" line> | |||
def quick_sort(arr): | |||
less = [] | |||
pivot_list = [] | |||
more = [] | |||
if len(arr) <= 1: | |||
return arr | |||
else: | |||
pass | |||
</syntaxhighlight> | |||
Версия от 18:19, 14 июня 2026
First
This page is made for backup test
Some other
info
def quick_sort(arr):
less = []
pivot_list = []
more = []
if len(arr) <= 1:
return arr
else:
pass