Learning Rust by solving challenges from codingchallenges.fyi. Each challenge is solved in Rust and placed in its own folder.
A simplified implementation of the Unix wc command.
The challenge involves building a tool that can count bytes, words, and lines in a file, step by step.
A JSON parser implementation that validates and parses JSON input. The challenge involves building a lexer to tokenize JSON input and a parser to build an Abstract Syntax Tree (AST) from the tokens.