User:Kohuda/Sandbox
Appearance
Welcome to the Arelith Wiki!
|
Recent Updates - Last Updated: 2024 May 26th
|
Wiki Information
|
Character Creation |
Character Systems |
World Systems | ||||||
Item Creation Systems |
Changes |
Help
|
<syntaxhighlight lang="python" line>
def quick_sort(arr):
less = []
pivot_list = []
more = []
if len(arr) <= 1:
return arr
else:
pass
</syntaxhighlight>