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.
z = a + b * c; it must be z = a + b + c; # I suppose misstype in Details
I had the same problem on Python language, I had to modify my regex to avoid \n at the end. But I saw other solutions published by other people on Python with a regular expression that not includes it and have failed for me on the first attemps. Its a bit confusing to see solutions that was not valid or doesn't works actually. I'm figuring that its posible that the kata tests cases was changed after the solution was published, may be?
Test your solution with
ExpressionsMatter(1, 1, 1) == 3
and you'll see.no, boolean values are EITHER
true
ORfalse
. you should also study C# operators (of all kinds)This comment is hidden because it contains spoiler information about the solution
It's part of the string:
"1234\n"
Not a kata issue, it's a problem with your code, there is a new line there.
That's not enough.