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.
Wrong working with asian etc. languages
Agree with https://www.codewars.com/users/metalim - solution should work using runes
goddamn that's so smart in its simplicity that now I feel like a muppet
my respect for you. intelligent solution
Thank you! I have learned something new from your translation!
good job
it doesn't work for 100, 200 etc
Please, this is a bad 8kyu and it's almost guaranteed to be a duplicate of some katas out there.
Golang translation created, please review!
Golang translation created, please review!
Golang translation created, please review!
The saple tests have the wrong package name.
Solve it or forfeit it first. In solutions, middle-top, click on the language you were training, select Add New -> Translate this kata.
Ok! How does one add support for a different language?
Duplicate: https://www.codewars.com/kata/multiple-of-index
How about using like this ? Or should I sort first and then use indexOf to find the first and then slice ?
var capsuleWardrobe = function (shirts) {
var arr = shirts.filter(function(x) {
return x >= 8;
});
return arr.length;
}
Loading more items...