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

Similar Problems from Web Search

Share

sort(0,64.1,16.2+0,16.3+0,4.3)
Add 64.1 and 0 to get 64.1.
sort(0,64.1,16.2,16.3+0,4.3)
Add 16.2 and 0 to get 16.2.
sort(0,64.1,16.2,16.3,4.3)
Add 16.3 and 0 to get 16.3.
0
To sort the list, start from a single element 0.
0,64.1
Insert 64.1 to the appropriate location in the new list.
0,16.2,64.1
Insert 16.2 to the appropriate location in the new list.
0,16.2,16.3,64.1
Insert 16.3 to the appropriate location in the new list.
0,4.3,16.2,16.3,64.1
Insert 4.3 to the appropriate location in the new list.