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.
Ehm, closing.
Not a kata issue. Your code is wrong. ( 270 Solves and you say the tests are wrong? Really? ) Also, format your code as code and mention the language. Help us help you!
Closing.
How can you get a 16-sided square when one side on the original rectangle is 14?
This comment is hidden because it contains spoiler information about the solution
what is wrong with it ? all squares... what did i miss ?
It sums up nicely but it is wrong:-( Please look again at the drawing.
this-> console.log(sqInRect(20, 14)); // [14, 6, 6, 2, 2, 2])
i had broken into [ 16, 4, 2, 2 ] which is too sums up nicely.
Tip: as long as the string length > 0 then you will have at least one palindrome substring
Best Regards,
i am stuck on this - Value is not what was expected all the time. this isn't worth it. what is the issue?
all my tests are passing. keep failing on submit. getting expected 1 got 0. i covered '' and 'a' - what else?
This comment is hidden because it contains spoiler information about the solution
It's a function, it needs to return the result -- not console.log it.
This comment is hidden because it contains spoiler information about the solution
this should have passed the test... the output is correct:
function solution(pairs){
for(el in pairs)
{
console.log(el + " = " + pairs[el]);
}
}
TESTED ON JSFIDDLE