Backup test: различия между версиями

Материал из test
Метка: отменено
Метка: отменено
Строка 18: Строка 18:
pass
pass
‎</syntaxhighlight>
‎</syntaxhighlight>
<syntaxhighlight lang="python" copy>
def quick_sort(arr):
    less = []
</syntaxhighlight>

Версия от 18:30, 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


def quick_sort(arr):
    less = []