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.
done
Approved
python new test framework is required. updated in this fork
This comment is hidden because it contains spoiler information about the solution
Your usage of.Object.defineProperty()
makes no sense, I suggest you rethink that part of your code.Sorry for my previous message, I should have tested your code. Your code does produce very sensible results, the problem is that the properties defined by
Object.defineProperty()
are notenumerable
by default, andassert.deepEquals()
appears to consider that enumerability in its comparison. You need to find a way to make those propertiesenumerable
.The
ISSUE
tag if for issues with the kata, not issues with your solution.This comment is hidden because it contains spoiler information about the solution
i love one liners
Too late to change it. That'd render all solutions invalid.
The python code should expect one dictionary, i.e. {key1: value1, key2: value2, ...}. Right now we need a list of dictionaries with single entries [{key1: value1}, {key2: value2}] which TBH defeats the purpose of having a dictionary at all.
This comment is hidden because it contains spoiler information about the solution
Lua translation!
Enabled Node v14, try again.
Because it requires Node v12 at least.
Solution with Object.fromEntries doesn't work.
Loading more items...