Difference between revisions of "Num sort"

From WeBWorK_wiki
Jump to navigation Jump to search
(from ur manpages)
 
(No difference)

Latest revision as of 20:44, 18 November 2009


num_sort

Description

Sorts a list into numerical order

Syntax

num_sort(@list)

Params

@list is the list to be sorted.

Returns

Returns list sorted numerically.

Examples

join(" ",num_sort(23,11,2,5,10)); returns "2 5 10 11 23"