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
Why didn't I think of this? Very clever. As a sidenote, some things to consider here are package size (of Lodash) and execution time. If execution time is faster than your own solution, it may be good to investigate which techniques the package is using under the hood to optimize execution. As for package size, I tend to stray away from helper libraries like Ramda and Lodash, unless the team I'm working on agrees we will use it a lot throughout the app. The less bundle bloat the better!