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.
Your computation for total combination is wrong.
Not a valid issue. Follow the adivce from #akar-0.
When you don't know, it's better to ask a question than raising an issue. Most issues raised are actually errors from OP. You can post your code, with a spoiler flag. And formatting it properly or it will be not usable. See there if you don't know how to do it: https://docs.codewars.com/training/troubleshooting/#post-discourse
See also there for a general help: https://docs.codewars.com/training/troubleshooting/
No it's not.
Because you are generating 100000 and you need just 6 for ex.
what makes it bad. looks very much genius to me.
This comment is hidden because it contains spoiler information about the solution
I've decided not to give any hints, because I think it would give the game away entirely. Sorry! If it's any consolation, I have forfeited on similar kata games after bashing my head against the wall for far too long, so I know exactly how how you feel ;)
It's probably because you are ranked 3kyu and this is a 6kyu ranked problem. Solve some harder katas.
Thanks for the explanation BattleRattle!
I'm not a native speaker as well..
The task is to build the sum of all digits. And if the sum itself exceeds 10, you have to build the sum of those digits again., E.g. for 39: 3 + 9 = 12. Since 12 is greater than (or equal to) 10, you have to build the sum of digits again: 1 + 2 = 3. So the final result for 39 would be 3. And this has to be done for all digits in the date.