Parse a simplified JSON-like string and sum all numeric values, ignoring numbers inside strings.
Constraints
Example
```python
>>> extract_json_numbers('{"a": 1, "b": 2.5, "c": [3, -4]}')
2.5
>>> extract_json_numbers('[10, "20", 30]')
40
>>> extract_json_numbers('{"a": "1,2", "b": 0}')
0
```
Recent Submissions
No submissions yet — hit Run Tests to try!
Hints