https://github.com/ignatious-p/coding-challenges
Solutions to the challenges found at codingchallenges.fyi
https://github.com/ignatious-p/coding-challenges
c codingchallenges cpp learning-by-doing
Last synced: 11 months ago
JSON representation
Solutions to the challenges found at codingchallenges.fyi
- Host: GitHub
- URL: https://github.com/ignatious-p/coding-challenges
- Owner: ignatious-p
- License: gpl-3.0
- Created: 2024-09-17T04:26:03.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-12T16:13:34.000Z (about 1 year ago)
- Last Synced: 2025-03-13T06:34:08.442Z (11 months ago)
- Topics: c, codingchallenges, cpp, learning-by-doing
- Language: C++
- Homepage:
- Size: 157 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Overview
This is a repository containing my solutions to the challenges found at [Coding Challenges](https://codingchallenges.fyi/).
I will be adding to this repository as I continue solving challenges, and as I learn better ways to do things.
I have included a significant amount of comments in my code to help you (and me in like 5 days) understand what's going on. Happy coding!
# Status
Legend:
- ✅ : Challenge is considered **completed** in that language. This means that:
- Source code achieves or exceeds the functionality specified in the challenge.
- *All* tests are passing.
- ❌ : Challenge is considered **incomplete** in that language. This means that:
- Source code is not fully functional;
- Tests aren't passing/don't exist;
| Challenge name (and link) | Status | Notes |
-- | -- | -- |
| [Build Your Own `wc`](https://codingchallenges.fyi/challenges/challenge-wc/) | C++:✅ C:❌ | |
| [Build Your Own `cat`](https://codingchallenges.fyi/challenges/challenge-cat) | C++: ❌ C: ❌| |
# Credits
I stand upon the shoulders of giants and here I credit them.
## People/Projects
- A significant portion of the build system for these projects is based on the course content for [Modern C++ Course For CV (2020)](https://www.ipb.uni-bonn.de/teaching/cpp-2020/lectures/index.html).
Although it might be unrecognisable from it now, I would still like to thank Ignacio Vizzo and the University of Bonn for providing incredibly high quality C++ content **for free**.
- I would also like to thank Yan Chernikov a.k.a "[TheCherno](https://www.youtube.com/@TheCherno)" for creating the best C++ reference tutorials on YouTube.