Question 1013847
Write the largest number possible using the following digits:
<pre>
Just arrange the digits largest to smallest

3,0,7 --> largest is 730
5,9,1 --> largest is 951
4,9,8 --> largest is 984
1,0,3,2 --> largest is 3210
2,7,1,4 --> largest is 7421
9,7,3,5 --> largest is 9753
</pre>
Write the smallest number possible using the following digits:
<pre>
Arrange the digits smallest to largest except for zero(s).
A zero cannot go first.  So put the smallest non-zero digit first,
and then follow it with the zero(s), if any.

4,3 --> smallest is 34 
5,1,2 --> smallest is 125
5,0,4  --> smallest is 405
2,1,3,4  --> smallest is 1234
4,1,2,1  --> smallest is 1124
5,8,0,1  --> smallest is 1058

Edwin</pre>