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.
omg, haha! I honestly never expected anyone to actually read them so this feedback is awesome to hear. <3 Thank you! I've moved on to focusing on LeetCodes nowadays and I do try to document my process as much as I can on there. I go by the same handle there if you're interested! :) Again, thanks for the encouragement—I'm glad I could help!
Glad you enjoyed it!
You can't compare arrays like that in JavaScript. If
a
andb
are arrays, but aren't referring to the same object (array),a == b
will always returnfalse
.https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Equality
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Strict_equality