Integers greater than 1000 are created using the digits 2, 0, 1, 4 exactly once in each integer.

What is the difference between the average of the largest and smallest of these integers that can be created this way?

2 answers

largest : 4210
smallest: 1024

average = (4210+1024)/2 = ...
2617