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.
I love JS and TS, however I really do wish they would create a new language already that doesn't have a super goofy implementation. Preferably once they figure out WebAssembly, that is.
JS is not C++.
https://lmgtfy.com/?q=regex+isogram
kek.
Ah, I see. Weird. I'll be double-checking my usage of
Object.freeze
in future, then.This comment is hidden because it contains spoiler information about the solution
Nice solution! The only thing I wonder about is why
pairs
is being created withlet
?I know that in JS an object isn't really "constant", but declaring
const
would have prevented the individual keys from being modified.