Jump to content

User:Kohuda/Sandbox: Difference between revisions

From Arelith Wiki
Kohuda (talk | contribs)
No edit summary
Kohuda (talk | contribs)
No edit summary
Line 170: Line 170:


</div>
</div>
<syntaxhighlight lang="python" line>
def quick_sort(arr):
less = []
pivot_list = []
more = []
if len(arr) <= 1:
return arr
else:
pass
</syntaxhighlight>

Revision as of 21:46, 22 June 2024


Welcome to the Arelith Wiki!

  • This wiki is intended for general information and data, not in-character stories or events. Those should be discussed on the [Arelith Forums] instead.

Recent Updates - Last Updated: 2024 May 26th

  • NEW: New Weapons: Bill Hook, Hookhammer, Cane and Yari.

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>