Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
Also, this would be a duplicate to many existing elementary DP (more specifically, coin change) katas, with a slight twist at the end.
Issues from the "harder" version of this kata also applies to this kata:
Tests are unacceptable: the description says
but the actual tests only contains at most 2 trays, which becomes a much easier problem.
Also, this would be a duplicate to many existing elementary DP (more specifically, coin change) katas, with a slight twist at the end.
Anyways, even the tests are unacceptable: the description says
but the actual tests only contains at most 2 trays, which becomes a much easier problem.
Similarly, random tests is a complete joke: It only tests
[4, 10]
against a multiple of 10, which has a trivial solution.There is a dick move: random tests are secretly testing runtime each run and asserts that it does not exceed a certain value, with no indication this is being tested:
This kata needs random tests.