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.
OP solved it, closing.
You must throw an exception in cases like referencing an undeclared variable or an input that doesn't evaluate to an expression
Look at how the last basic test works, it expects a throw when trying to get a non-existent "y"
Visual Studio does have a few tricks that the Codewars editor can't match. All I meant was, if you're doing the kata on another platform, you can make your own tests (as Codewars encourages you to do anyway) and run them any way you like. You don't really need to duplicate the Codewars testing setup.
You'll need the "other functions" alluded to in the description. The full class definition is below. Once you have that, you should be able to re-create the Codewars testing setup on your own platform. Of course, you don't really need to do this just to solve the kata.
Unordered_Match
implements solution-checking for this kata via the Snowhouse assert framework used with C++ on Codewars. The criterion is that the actual and expected solutions (both vectors of unsigned integers) should contain the same elements, but not necessarily in the same order. The full source code is as follows.Try to be helpful for those who may want to help you. You will have more chances to get an answer if you present clearly your problem:
Where do you see that?