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.
JS tests print AFTER assertion
assertion fails -> exception -> print never happens because exception exited the function early -> no information given to solver what's wrong
the python tests are also written this way but that test framework doesn't exit early on failed assertion (it should though, and it could conceivably change that behaviour)
the test code intended to print out failure messages but was written in an incorrect way that used to "work" but now doesn't (specifically there were console.log's after assertions - but a failed assertion raises an exception and thus exits early and skips code after it)
the tests have been updated, they'll now tell you what they don't like.
so there are 5 tests total. The one I'm failing is the 'validity' test.. Any information on what this is expecting?
in JavaScript:
Passing all 4 tests(10k passwords generated, testing lengths, testing inequality, testing character count)
proceeded by 1 fail saying: "Invalid passwords generated!: expected false to be true"
Is there something I'm missing here?
Not a kata issue, there are problems with your solution.
This comment is hidden because it contains spoiler information about the solution
I'm simply used to calling std:: all the time. It helps me know that I'm not using a regular function.
You could use this "using namespace std;" so you don't have to do the std:: all the time