Ad
  • Custom User Avatar

    How come I don't see any 1st or 2nd kyu katas as a 5th kyu? When I click on the kyu no katas are displayer, but the stats show there are some in different categories.

  • Custom User Avatar

    The tests should either be of the form

    Assert.AreEqual(true, Brace.validBraces( "()" )); // first parameter of AreEqual() is supposed to be the expected value

    or

    Asser.IsTrue(Brace.validBraces( "()" ));

    Otherwise failing tests lead to misleading error messages.