Instructions
Your input variable will contain a string of invalid JSON. However, each invalid JSON string received can be fixed
by making one or more single character changes. Only three possible things may be wrong with the JSON string:
1) missing leading or trailing brace, 2) unquoted JSON string value, 3) missing comma between properties.
Inputs
value1
A string of invalid JSON
Sample Test Cases
Single Problem
value1 {"name":"em"
output {"name":"em"}
Multiple Problems
value1 "name":"em
output {"name":"em"}