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.
Haskell translation
This exercise taught me a lot of other related functions, super useful.
It's not really that hard. Clear instructions:
You have a list of geese already made.
You just remove any item common in the geese list and the array to be filtered you get.
That's it?
edit button under comment
Using
remove
on lists while iterating through them with afor
loop can cause parts of the list to be skipped, which is what's happening in your code.Needs better instructions.
Did anybody else notice how really weird and bone chillingly creepy the test case's string combos are?
["a","Dog","Of","Food"]
["Beg","Life","I","Too"]
["","Moderately","Brains","Pizza]
Like what in the world, straight out of Stephen King novel
I wouldn't say it's an 8th-level kata
Approved
Shorter description:
Create a function that removes specific bird species, known as 'geese', from a provided list.
fixed. feel free to raise an
issue
when you encounter such problems(PHP) fixed. feel free to raise an
issue
when you encounter such problemsCoffeeScript translation
Approved
Approved
Loading more items...