This repository contains my solutions to the challenges from codingchallenges.fyi. Each subdirectory is a separate challenge implementation.
-
wc tool - A clone of the Unix word count tool
- Counts bytes, words, lines and characters in text files
- Original Challenge
-
JSON Parser - A JSON parser implementation
- Parses and validates JSON according to specification
- Supports all JSON data types and nested structures
- Original Challenge
Each challenge has its own installation instructions in its respective directory's README.
.
├── README.md
├── ccwc/
│ ├── README.md
│ ├── main.go
│ └── ...
├── json-parser/
│ ├── README.md
│ ├── main.go
│ └── ...
└── ...
Navigate to any challenge directory and follow the README instructions for that specific challenge:
cd <challenge-directory>
# Follow challenge-specific README for build/run instructions- Go
- More will be added as challenges are completed
Feel free to open issues or submit PRs if you spot any improvements.