

InterviewSolution
Saved Bookmarks
1. |
Find the sum of all five digit numbers ,that can be formed using the digits `1, 2, 3, 4 and 5` (repetition of digits not allowed) |
Answer» Required sum`=(5-1)!(1+2+3+4+5+((10^(5)-1)/(9))` `=14*15*11111=39999960` |
|