Skip to content

Commit 472cf69

Browse files
Merge branch 'main' into wc
2 parents dbf30b4 + a409abe commit 472cf69

12 files changed

Lines changed: 42 additions & 5 deletions

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,4 +84,7 @@ Essentially:
8484
- [Build your own Whois](Solutions/challenge-whois.md)
8585
- [Build your own SMTP Server](Solutions/challenge-smtp-server.md)
8686
- [Build your own Markdown To PDF Editor](Solutions/challenge-md-to-pdf.md)
87+
- [Build Your Own Spelling Correction Tool](Solutions/challenge-spelling-correction-tool.md)
88+
- [Build Your Own BitTorrent Client](Solutions/challenge-bittorrent.md)
89+
- [Build Your Own Bitcask](Solutions/challenge-bitcask.md)
8790
<p align="right">(<a href="#top">🔼 Back to top</a>)</p>

Solutions/challenge-bitcask.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Build Your Own Bitcask
2+
3+
The Challenge: [Build Your Own Bitcask](https://codingchallenges.fyi/challenges/challenge-bitcask)
4+
5+
The shared solutions:
6+
7+
| No. | Solution | Language | Author |
8+
|-----|-------------------------------------------------------------|----------|------------------------------------------------------|
9+
| 1 | [Bitcask](https://github.com/Infinage/cpp-experiments/blob/main/cli/bitcask.cpp) | C++ | [Naresh Jagadeesan](https://github.com/Infinage) |

Solutions/challenge-bittorrent.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Build Your Own BitTorrent Client
2+
3+
The Challenge: [Build Your Own BitTorrent Client](https://codingchallenges.fyi/challenges/challenge-bittorrent)
4+
5+
The shared solutions:
6+
7+
| No. | Solution | Language | Author |
8+
|-----|-------------------------------------------------------------|----------|------------------------------------------------------|
9+
| 1 | [Ctorrent](https://github.com/Infinage/cpp-experiments/tree/main/torrent) | C++ | [Naresh Jagadeesan](https://github.com/Infinage) |

Solutions/challenge-bloom-filter-spell-checker.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,4 @@ The shared solutions:
1212
| 4 | [spellchecker-bloomfilter](https://github.com/OmkarPh/spellchecker-bloomfilter)| Go | [OmkarPh](https://github.com/OmkarPh) |
1313
| 5 | [bloom_filter](https://github.com/lwcarani/bloom_filter)| OCaml | [Luke Carani](https://github.com/lwcarani) |
1414
| 6 | [Bloom-Filter](https://github.com/VaishnavSherla/Bloom-Filter) | Python | [Vaishnav Sherla](https://github.com/VaishnavSherla) |
15+
| 7 | [Spellcheck](https://github.com/Infinage/cpp-experiments/blob/main/cli/spellcheck.cpp) | C++ | [Naresh Jagadeesan](https://github.com/Infinage) |

Solutions/challenge-cut.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,4 @@ The shared solutions:
1515
| 7 | [cutTool](https://github.com/apih99/cutTool) | Rust | [apih99](https://github.com/apih99) |
1616
| 8 | [pycut](https://github.com/victoriacheng15/coding-challenges-lab/tree/main/python/cut-py) | Python | [victoria Cheng](https://github.com/victoriacheng15) |
1717
| 9 | [KCut](https://github.com/kiner-shah/MySolutionsToCodingChallenges/tree/main/cut-tool) | C++ | [Kiner Shah](https://github.com/kiner-shah) |
18+
| 10 | [challenge-cut](https://github.com/blissful-coder/CodingChallenges/tree/main/challenge-cut) | C++ | [Anurag Negi](https://github.com/blissful-coder) |

Solutions/challenge-git.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ The shared solutions:
88
|-----|----------|----------|--------|
99
| 1 | [Write Your Own Git](https://github.com/jainmohit2001/coding-challenges/blob/master/src/26) | TypeScript | [jainmohit2001](https://github.com/jainmohit2001) |
1010
| 2 | [Write Your Own Git-cpp](https://github.com/harshad2112/git) | C++ | [harshad2112](https://github.com/harshad2112) |
11-
| 3 | [CGit](https://github.com/Infinage/cpp-experiments/tree/main/cgit) | C++ | [infinage](https://github.com/infinage) |
11+
| 3 | [CGit](https://github.com/Infinage/cpp-experiments/tree/main/cgit) | C++ | [Naresh Jagadeesan](https://github.com/infinage) |

Solutions/challenge-huffman.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,3 +35,4 @@ The shared solutions:
3535
| 27 | [KCompressor](https://github.com/kiner-shah/MySolutionsToCodingChallenges/tree/main/compression-tool) | C++ | [Kiner Shah](https://github.com/kiner-shah) |
3636
| 28 | [zippy](https://github.com/ravil-gasanov/zippy) | Python | [Ravil Gasanov](https://github.com/ravil-gasanov) |
3737
| 29 | [huffman-compressor-cpp](https://github.com/r-harsh-r/huffman-encoder-cpp-optimised) | C++ | [Harsh R](https://github.com/r-harsh-r) |
38+
| 30 | [challenge-huffman](https://github.com/blissful-coder/CodingChallenges/tree/main/challenge-huffman) | C++ | [Anurag Negi](https://github.com/blissful-coder) |

Solutions/challenge-json-parser.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ The shared solutions:
3939
| 30 | [JSON Validator](https://github.com/hlalljie/json-validator-python) | Python | [Hayden Lalljie](https://github.com/hlalljie) |
4040
| 31 | [json_parser](https://github.com/Re1nGer/json_parser) | Go | [Bekjon Ibragimov](https://github.com/re1nger) |
4141
| 32 | [json-parser](https://github.com/melsonic/json-parser) | Go | [melsonic](https://github.com/melsonic) |
42-
| 33 | [json-parser](https://github.com/Infinage/cpp-experiments/tree/main/json-parser) | C++ | [Naresh Jagadeesn](https://github.com/Infinage) |
42+
| 33 | [json-parser](https://github.com/Infinage/cpp-experiments/tree/main/json-parser) | C++ | [Naresh Jagadeesan](https://github.com/Infinage) |
4343
| 34 | [json-parser](https://github.com/rdotjain/json-parser) | Go | [rdotjain](https://github.com/rdotjain) |
4444
| 35 | [json-parser](https://github.com/ferranjr/build-your-own-in-rust/tree/main/json-parser) | Rust | [ferranjr](https://github.com/ferranjr/) |
4545
| 36 | [json-parser](https://github.com/piter0/json-parser) | C# | [piter0](https://github.com/piter0) |
@@ -57,3 +57,4 @@ The shared solutions:
5757
| 48 | [json_parser](https://github.com/assaidy/json_parser) | ODIN | [Ahmad Assaidy](https://github.com/assaidy) |
5858
| 49 | [jpTool](https://github.com/lizardkingLK/coding-challenges/tree/main/jpTool) | C# | [lizardkingLK](https://github.com/lizardkingLK) |
5959
| 50 | [json-parser-in-php](https://github.com/DanielHemmati/json-parser-in-php) | php | [Daniel Hemmati](https://github.com/DanielHemmati) |
60+
| 51 | [challenge-json](https://github.com/blissful-coder/CodingChallenges/tree/main/challenge-json) | C++ | [Anurag Negi](https://github.com/blissful-coder) |

Solutions/challenge-mandelbrot.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,4 @@ The shared solutions:
88
|---|------------------------------------------------------------------------|--------|------------------------------------------------------|
99
| 1 | [MandelbrotPygame](https://github.com/Kingcitaldo125/MandelbrotPygame) | Python | [Kingcitaldo125](https://github.com/Kingcitaldo125/) |
1010
| 2 | [Mandelbrot explorer](https://github.com/lolo8304/coding-challenge/tree/main/no-84) | Java | [lolo8304](https://github.com/lolo8304) |
11+
| 3 | [Mandelbrot explorer](https://github.com/Infinage/cpp-experiments/blob/main/misc/mandelbrot.cpp) | C++ | [Naresh Jagadeesan](https://github.com/Infinage) |
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Build Your Own Spelling Correction Tool
2+
3+
The Challenge: [Build Your Own Spelling Correction Tool](https://codingchallenges.fyi/challenges/challenge-spelling-correction)
4+
5+
The shared solutions:
6+
7+
| No. | Solution | Language | Author |
8+
|-----|----------|----------|--------|
9+
| 1 | [spelling-correction-tool](https://github.com/ItsYasser/spelling-correction-tool) | JavaScript | [ItsYasser](https://github.com/ItsYasser) |

0 commit comments

Comments
 (0)