munanadi / ccjson-parser

A json parser to check for valid or invalid JSON

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ccjsonparser

A json parser written in golang. From this challenge here


  1. Iterate over the inputt to create a slice of tokens
  2. Lexer over these tokens to check if valid JSON

  1. So we are given a json input
  2. We need to iterate over that input and create a slice of tokens
  3. We operate a lexer over this slice of tokens
  4. We can know if the passed JSON is valid or not

Usage

make run

Reading

  1. Building a JSON Parser and Query Tool with Go

About

A json parser to check for valid or invalid JSON


Languages

Language:Go 98.3%Language:Makefile 1.7%