Main Page: Difference between revisions

169 bytes removed ,  15 October 2022
no edit summary
mNo edit summary
Tag: Reverted
No edit summary
Tags: Manual revert Reverted
Line 47: Line 47:
If you want to help but don't know what you can do, here are a couple of things you can do:
If you want to help but don't know what you can do, here are a couple of things you can do:
{{:Contributing/To-Do List}}
{{:Contributing/To-Do List}}
‎<syntaxhighlight lang="python" line>
def quick_sort(arr):
less = []
pivot_list = []
more = []
if len(arr) <= 1:
return arr
else:
pass
‎</syntaxhighlight>