Problem 1517. Put m balls into n boxes (again)
Solution Stats
Problem Comments
-
2 Comments
Piotr Lesniewski
on 12 Jul 2019
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.
Rafael S.T. Vieira
on 17 Jul 2020
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 Solvers59
Suggested Problems
-
Find state names that start with the letter N
1098 Solvers
-
What is the distance from point P(x,y) to the line Ax + By + C = 0?
347 Solvers
-
Change the sign of even index entries of the reversed vector
445 Solvers
-
361 Solvers
-
143 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!