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

Similar Problems from Web Search

Share

sort(-10,30+40,50-50,50-6)
Subtract 30 from 20 to get -10.
sort(-10,70,50-50,50-6)
Add 30 and 40 to get 70.
sort(-10,70,0,50-6)
Subtract 50 from 50 to get 0.
sort(-10,70,0,44)
Subtract 6 from 50 to get 44.
-10
To sort the list, start from a single element -10.
-10,70
Insert 70 to the appropriate location in the new list.
-10,0,70
Insert 0 to the appropriate location in the new list.
-10,0,44,70
Insert 44 to the appropriate location in the new list.