Teste: mudanças entre as edições

De Documentação
Sem resumo de edição
Sem resumo de edição
Linha 1: Linha 1:
{{#mermaid:sequenceDiagram
<syntaxhighlight lang="python" line>
participant Alice
def quick_sort(arr):
participant Bob
less = []
  Alice->John: Hello John, how are you?
pivot_list = []
  loop Healthcheck
more = []
      John->John: Fight against hypochondria
if len(arr) <= 1:
  end
return arr
  Note right of John: Rational thoughts <br/>prevail...
else:
    John-->Alice: Great!
pass
    John->Bob: How about you?
</syntaxhighlight>
    Bob-->John: Jolly good!
}}
[[Categoria:Manutenção]]

Edição das 14h30min de 23 de maio de 2023

def quick_sort(arr):
	less = []
	pivot_list = []
	more = []
	if len(arr) <= 1:
		return arr
	else:
		pass