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!
I notice you haven't documented your thought process in your last few katas. Just dropping you a note to say I really enjoy reading them! I still struggle putting my own process into words, and reading yours helps me a great deal. Thank you!
You can't compare arrays like that in JavaScript. If a and b are arrays, but aren't referring to the same object (array), a == b will always return false.
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!
I notice you haven't documented your thought process in your last few katas. Just dropping you a note to say I really enjoy reading them! I still struggle putting my own process into words, and reading yours helps me a great deal. Thank you!
Pretty! Using a switch statement did not even occur to me.
Just found this - approved
Thanks!
Glad you enjoyed it!
this is indeed a great and funny Kata lol
This kata is great! Made me laugh, and taught me some new stuff. win-win, baby
This comment is hidden because it contains spoiler information about the solution
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
This comment is hidden because it contains spoiler information about the solution
.