Skip to main content
Sort
Tick mark Image
Evaluate
Tick mark Image

Similar Problems from Web Search

Share

sort(5+10,20,6-12)
Subtract 5 from 10 to get 5.
sort(15,20,6-12)
Add 5 and 10 to get 15.
sort(15,20,-6)
Subtract 12 from 6 to get -6.
15
To sort the list, start from a single element 15.
15,20
Insert 20 to the appropriate location in the new list.
-6,15,20
Insert -6 to the appropriate location in the new list.