From 34dfe6081705fc3c0eb6cff20087e96ff497140c Mon Sep 17 00:00:00 2001 From: Paul Date: Sun, 22 Jun 2025 10:22:45 -0400 Subject: [PATCH 1/3] Add duplicate file finder soln. and entry in the readme --- README.md | 1 + Solutions/challenge-duplicate-file-finder.md | 1 + 2 files changed, 2 insertions(+) diff --git a/README.md b/README.md index eb1cb56b..448a3158 100644 --- a/README.md +++ b/README.md @@ -74,5 +74,6 @@ Essentially: - [Build your own Netcat](Solutions/challenge-netcat.md) - [Build your own Video Chat Application](Solutions/challenge-video-chat.md) - [Build your own Mandelbrot Set Explorer](Solutions/challenge-mandelbrot.md) +- [Build your own Duplicate File Finder](Solutions/challenge-duplicate-file-finder.md)

(🔼 Back to top)

diff --git a/Solutions/challenge-duplicate-file-finder.md b/Solutions/challenge-duplicate-file-finder.md index 38a15c45..c5c39c9e 100644 --- a/Solutions/challenge-duplicate-file-finder.md +++ b/Solutions/challenge-duplicate-file-finder.md @@ -10,3 +10,4 @@ The shared solutions: | 2 | [finddup](https://github.com/triko88/finddup) | C++ 17 | [Apan Trikha](https://github.com/triko88) | | 3 | [Duplicate File Finder](https://github.com/OneBrick-Software/Duplicate-file-finder) | Go | [Ivan APEDO](https://github.com/IvanGael) | | 4 | [duplicate_file_finder](https://github.com/ronaldsuwandi/challenge_duplicate_file_finder) | Rust | [Ronald Suwandi](https://github.com/ronaldsuwandi/) | +| 5 | [DupeDetector](https://github.com/Kingcitaldo125/DupeDetector) | Python | [Kingcitaldo125](https://github.com/Kingcitaldo125/) | From f9269aac802a25a35142764fb488cbc572f4b92f Mon Sep 17 00:00:00 2001 From: Paul Date: Sun, 29 Jun 2025 13:59:45 -0400 Subject: [PATCH 2/3] Add asteroids markdown and Pygame soln. --- Solutions/challenge-asteroids.md | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 Solutions/challenge-asteroids.md diff --git a/Solutions/challenge-asteroids.md b/Solutions/challenge-asteroids.md new file mode 100644 index 00000000..333553e1 --- /dev/null +++ b/Solutions/challenge-asteroids.md @@ -0,0 +1,8 @@ +# Build Your Own Asteroids + +The Challenge: [Build Your Own Asteroids](https://codingchallenges.fyi/challenges/challenge-asteroids) +The shared solutions: + +| No. | Solution | Language | Author | +|-----|-------------------------------------------------------------|----------|------------------------------------------------------| +| 1 | [Pysteriods](https://github.com/Kingcitaldo125/Pysteriods) | Python | [Kingcitaldo125](https://github.com/Kingcitaldo125/) | From 87de5dc8f3ce6794f7d0bfffaed9faeb66ac7ac3 Mon Sep 17 00:00:00 2001 From: Paul Date: Mon, 30 Jun 2025 09:55:57 -0400 Subject: [PATCH 3/3] Remove asteroids from main (for now) --- Solutions/challenge-asteroids.md | 8 -------- 1 file changed, 8 deletions(-) delete mode 100644 Solutions/challenge-asteroids.md diff --git a/Solutions/challenge-asteroids.md b/Solutions/challenge-asteroids.md deleted file mode 100644 index 333553e1..00000000 --- a/Solutions/challenge-asteroids.md +++ /dev/null @@ -1,8 +0,0 @@ -# Build Your Own Asteroids - -The Challenge: [Build Your Own Asteroids](https://codingchallenges.fyi/challenges/challenge-asteroids) -The shared solutions: - -| No. | Solution | Language | Author | -|-----|-------------------------------------------------------------|----------|------------------------------------------------------| -| 1 | [Pysteriods](https://github.com/Kingcitaldo125/Pysteriods) | Python | [Kingcitaldo125](https://github.com/Kingcitaldo125/) |