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

Similar Problems from Web Search

Share

sort(-3,6,8-3,0,0,2)
Add 6 and 0 to get 6.
sort(-3,6,5,0,0,2)
Subtract 3 from 8 to get 5.
-3
To sort the list, start from a single element -3.
-3,6
Insert 6 to the appropriate location in the new list.
-3,5,6
Insert 5 to the appropriate location in the new list.
-3,0,5,6
Insert 0 to the appropriate location in the new list.
-3,0,0,5,6
Insert 0 to the appropriate location in the new list.
-3,0,0,2,5,6
Insert 2 to the appropriate location in the new list.