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.
thank you
unless problem was fixed check your code for typos. I've tried both ways and they did work.
the problem is that in my native language the sum of a sequence of integers means a bit different thing. for instance the sum of a sequence of 2 6 2 is 10, not 12 or 38 or 66 etc.
I'm not sure how to explain it clearer than the description itself (do the worked examples not help?). Tackling this a different way, can you explain what bit of the description you don't understand?
can someone explain wtf this kata is asking to do please?
That's a problem with how you expressed something in your code, not a problem with how the description is expressed.
Dropping starts happening when there are more than n of a value, not when there exactly n.
use long int instead of int because high precision floats cause problem
That is because when you use the ascii value (i.e., starting from 97+) the length of the word plays a bigger role than it should. Every extra letter would be a minimal addition of 97 instead of a minimal addition of 1. For instance, it would cause 'aaaa' (
4*97=388
) to score higher than 'zzz' (3*122=366
). Of course, when you use the actual alphabet index of the letters, 'aaaa' (4*1=4
) would score way lower than 'zzz' (3*26=78
).(c++) just saying title asks for >n while solution requires >=n..
This comment is hidden because it contains spoiler information about the solution
Not a kata issue.
Why? If there is some language where the behaviour is not as stated in the kata description just say that, changing the title would be wrong.
please rename title to "n or more times" not just "more than n", i wasted 20mins looking for the problem for nothing
This comment is hidden because it contains spoiler information about the solution
This comment is hidden because it contains spoiler information about the solution
Loading more items...