• Custom User Avatar

    Sorry for the dealy, this relates to the C# code I assume, so:

    SinglePairNoNestingTests is testing with a single open and closing character, and no nested (recursive) usage, e.g.:
    Using "{" and "}" this is valid: "{ABC}" and this is not "{ABC}}"

    SinglePairWithNestingTests is testing with a single open and closing character, but with nested usage, e.g.:
    Using "[" and "]" this is valid: "[[AB]C]" and this is not "[[A]BC"

  • Custom User Avatar

    Can anyone explain to me: SinglePairNoNestingTests and SinglePairWithNestingTests? I have problem with them.