

InterviewSolution
Saved Bookmarks
1. |
Find the total number of permutations of ndifferent things taken not more than rat a time, when each thing may be repeated any number of times. |
Answer» `(N^r-1)/(n-1)` |
|