Skip to content

Latest commit

 

History

History
16 lines (10 loc) · 625 Bytes

File metadata and controls

16 lines (10 loc) · 625 Bytes

Coding Challenges (Rust)

Learning Rust by solving challenges from codingchallenges.fyi. Each challenge is solved in Rust and placed in its own folder.

Challenges

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.