[{
  "_exerciseType": "Comment: DFA, NFA, REGEXP, GRAMMAR, PDA, TM",
  "exerciseType": "REGEXP",
  "totalTrueCases": 12,
  "totalFalseCases": 2,
  "containLetters": ["a", "b"],
  "randomStringLength": [0, 15],
  "description": "Give a regular expression whose language is strings over $\\{a, b\\}$ in which there is no occurrence of the substring aa.",
  "testCases": [
    {
      "": true,
      "ShowTestCase": true
    },
    {
      "aaaaaaaaaaaa": false,
      "ShowTestCase": true
    },
    {
      "bbb": true,
      "ShowTestCase": true
    },
    {
      "ababababb": true,
      "ShowTestCase": true
    },
    {
      "bbbb": true,
      "ShowTestCase": true
    },
    {
      "abb": true,
      "ShowTestCase":true
    },
    {
      "abababba": true,
      "ShowTestCase": true
    },
    {
      "abbbba": true,
      "ShowTestCase": true
    },
    {
      "babbbba": true,
      "ShowTestCase": true
    },
    {
      "aba": true,
      "ShowTestCase": true
    },
    {
      "baaaa": false,
      "ShowTestCase": true
    },
    {
      "bbbba": true,
      "ShowTestCase": true
    },
    {
      "abbababbaba": true,
      "ShowTestCase": true
    },
    {
      "abbbab": true,
      "ShowTestCase": true
    }
  ],
  "graph": {
    "nodes": [],
    "edges": []
  },
  "solution": ""
}]
