-
Sorts a table using the merge sorting algorithm.
Custom Command Dependencies:
NoneTest Code:
if not Load('done', false) then local table = {8, 3, 45, 23, 7, 2} Log(table) Log('Unsorted Table:') table = CC_MergeSort(table) Log(table) Log('Sorted Table:') Save('done', true) end