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.
Lua translation
This comment is hidden because it contains spoiler information about the solution
This comment is hidden because it contains spoiler information about the solution
CS: last testcase expects
{"1":4,"5":1,"10":0,"25":1366087610}
but should be{ '1': 4, '5': 1, '10': 0, '25': 2397957838778 }
as stated 9 years ago. Still applies.Also no random tests and no sample tests.
This kata is a subject to deduplication process here: https://github.com/codewars/content-issues/issues/93 Please join the discussion to help us identify duplicate kata and retire them.
This is a duplicate of https://www.codewars.com/kata/5365bb5d5d0266cd010009be
Please use new python test framework.
C++ translation is done. Please, rewiew it.
O(n)
would mean subtracting25
/10
/5
/1
until you have0
cents. The required complexity isO(1)
.No random tests.
No sample tests.
An almost duplicate of https://www.codewars.com/kata/longest-palindrome
Needs example tests and random tests.
This comment is hidden because it contains spoiler information about the solution