Problem 1517. Put m balls into n boxes (again)
Solution Stats
Problem Comments
-
2 Comments
I'm not sure what is the point of eliminating 'ifs'? At any rate they can be easily replaced by e.g. 'while' loops, so in my opinion you should either eliminate both of them or none.
Again, the best way to generate such a sequence is using depth-first search or recursion. By prohibiting the usage of IFs, all solutions are inefficient (because we can't cut the tree, and are forced to follow all branches).
Solution Comments
Show commentsProblem Recent Solvers62
Suggested Problems
-
Find all elements less than 0 or greater than 10 and replace them with NaN
15530 Solvers
-
given 3 sides, find area of this triangle
797 Solvers
-
Arrange Vector in descending order
11275 Solvers
-
Convert a Cell Array into an Array
1714 Solvers
-
Find the next Fibonacci number
565 Solvers
More from this Author17
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!