Wiki

Clone wiki

symja_android_library / Symbols / Sort

Sort

Sort(list)
sorts the elements of list into canonicl order.

Examples

>>> Sort({3,4,2,5})
{2,3,4,5}
>>> Sort({3,4,2,5}, Greater)
{5,4,3,2}

Updated