[{
    "_exerciseType": "Comment: DFA, NFA, REGEXP, GRAMMAR,PDA,TM.",
    "exerciseType": "PDA",
    "totalTrueCases": 7,
    "totalFalseCases": 4,
    "containLetters": ["a", "b", "c"],
    "randomStringLength": [0, 15],
    "description": "Construct the PDA that accepts L($\\{a^ic^jb^i \\mid i, j \\geq 0\\}$)",
    "testCases": [{
            "": true,
            "ShowTestCase":true
        },
        {
            "ccccc": true,
            "ShowTestCase":true
        },
        {
            "ab": true,
            "ShowTestCase":true
        },
        {
            "aaaabbbb": true,
            "ShowTestCase":true
        },
        {
            "aaacccccccccccccbbb": true,
            "ShowTestCase":true
        },
        {
            "aaaaaaaacbbbbbbbb": true,
            "ShowTestCase":true
        },
        {
            "accccccccccccccccb": true,
            "ShowTestCase":true
        },
        {
            "aaaaaaaaa": false,
            "ShowTestCase":true
        },
        {
            "bbbbbbbbbbb": false,
            "ShowTestCase":true
        },
        {
            "aaccbbbb": false,
            "ShowTestCase":true
        },
        {
            "aaaccb": false,
            "ShowTestCase":true
        }
    ],
    "graph": {
        "nodes": [],
        "edges": []
    },
    "solution": ""
}]