Problem 1287. Unique dice configurations
Given a number of dice N and the number of sides on each die S, write a MATLAB function that will output how many unique permutations you will get.
For example, unique_dice(2,6) will roll two six-sided dice, and should output 21. Although there are 36 possible combinations for two six-sided dice, (1,2) and (2,1) are equivalent, so (1,2) only counts once.
Assume that the dice are fair, and have an equal chance of rolling any number. Good luck!
Solution Stats
Problem Comments
Solution Comments
Show commentsProblem Recent Solvers29
Suggested Problems
-
1808 Solvers
-
Return a list sorted by number of consecutive occurrences
415 Solvers
-
Create a vector whose elements depend on the previous element
747 Solvers
-
Find the index of n in magic(n)
263 Solvers
-
Natural numbers in string form
1744 Solvers
More from this Author80
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!