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

Similar Problems from Web Search

Share

sort(4,\frac{6\times 1000000}{4},2^{1},\frac{10^{3}}{100})
Calculate 10 to the power of 6 and get 1000000.
sort(4,\frac{6000000}{4},2^{1},\frac{10^{3}}{100})
Multiply 6 and 1000000 to get 6000000.
sort(4,1500000,2^{1},\frac{10^{3}}{100})
Divide 6000000 by 4 to get 1500000.
sort(4,1500000,2,\frac{10^{3}}{100})
Calculate 2 to the power of 1 and get 2.
sort(4,1500000,2,\frac{1000}{100})
Calculate 10 to the power of 3 and get 1000.
sort(4,1500000,2,10)
Divide 1000 by 100 to get 10.
4
To sort the list, start from a single element 4.
4,1500000
Insert 1500000 to the appropriate location in the new list.
2,4,1500000
Insert 2 to the appropriate location in the new list.
2,4,10,1500000
Insert 10 to the appropriate location in the new list.