Find the sum of all 5 digit numbers that can be formed using $0,0,1,1,2,3$.
I think this problem requires a lot of cases.The problem caused is due to the repetition of digits $0,1$ else it would have been a standard problem.Also we have to subtract the cases when $0$ comes in the ten thousands place.
Of course , a lot of brute force may yield the answer the question is how do i efficiently tackle the problem.
Background:This problem is "Pathfinder for Olympiads".This exercise comes just after an example involving calculating the sum of all 5 digit numbers using digits $0,1,2,3,4$.
Related Post Find the sum of all 4 digit numbers which are formed by the digits 1,2,5,6?