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.
This comment is hidden because it contains spoiler information about the solution
Good catch, I meant to say return the item that occurs first in the array, rather than specifying only number data types. I updated it.
This comment is hidden because it contains spoiler information about the solution
This comment is hidden because it contains spoiler information about the solution
This comment is hidden because it contains spoiler information about the solution
Getting a couple questions on the Java translation , could you possibly take a look ? I only know Javascript.
Thanks Christian !
This comment is hidden because it contains spoiler information about the solution
Thanks !
Sounds good , thank you !
Thanks for the help ! I know it's not really your responsibilty , much appreciated :)
There are a couple of questions on my makeAcronym kata in the discourses section that I don't really have the answers to because they seem to be related to the tests you implemented. If you have a chance would you be willing to check those ?
In test 10 an empty array is passed in for javascript and an empty object for ruby and python, the return statement should be 'Not a string' for any of those cases
Thanks for everyone's feedback , hopefully the new description as to when to return 'Not letters' is more accurate now.
Here is the dictionary that is preloaded (javascript version)-
var dict = {
'A': "awesome",
'B': 'beautiful',
'C': 'confident',
'D': 'disturbing',
'E': 'eager',
'F': 'fantastic',
'G': 'gregarious',
'H': 'hippy',
'I': 'ingestable',
'J': 'joke',
'K': 'klingon',
'L': 'literal',
'M': 'mustache',
'N': 'newtonian',
'O': 'oscillating',
'P': 'perfect',
'Q': 'queen',
'R': 'rant',
'S': 'stylish',
'T': 'turn',
'U': 'underlying',
'V': 'volcano',
'W': 'weird',
'X': 'xylophone',
'Y': 'yogic',
'Z': 'zero'
};
Thanks !
Loading more items...