Implement JSON Comment Interpreter

# Introduction In this challenge, we will implement a JSON Comment Interpreter. JSON files are often used as configuration files, but they do not support comments by default. Our goal is to create a JSON parser that supports comments. The parser should treat anything after the `#` character as a comment, except when it appears between a pair of `"` characters. The challenge requires us to open the `jsonex.go` file and complete the code to implement the comment parsing function.

|
60 : 00

Click the virtual machine below to start practicing