From 1ec0fe6a90a2078342d7cddb03b18bf5cc925126 Mon Sep 17 00:00:00 2001 From: Yann Vanhalewyn Date: Tue, 10 Feb 2026 15:24:20 +0100 Subject: [PATCH] Add huffman solutions for C and Rust --- Solutions/challenge-huffman.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Solutions/challenge-huffman.md b/Solutions/challenge-huffman.md index ec3cf83..74d3d37 100644 --- a/Solutions/challenge-huffman.md +++ b/Solutions/challenge-huffman.md @@ -35,4 +35,6 @@ The shared solutions: | 27 | [KCompressor](https://github.com/kiner-shah/MySolutionsToCodingChallenges/tree/main/compression-tool) | C++ | [Kiner Shah](https://github.com/kiner-shah) | | 28 | [zippy](https://github.com/ravil-gasanov/zippy) | Python | [Ravil Gasanov](https://github.com/ravil-gasanov) | | 29 | [huffman-compressor-cpp](https://github.com/r-harsh-r/huffman-encoder-cpp-optimised) | C++ | [Harsh R](https://github.com/r-harsh-r) | -| 30 | [challenge-huffman](https://github.com/blissful-coder/CodingChallenges/tree/main/challenge-huffman) | C++ | [Anurag Negi](https://github.com/blissful-coder) | \ No newline at end of file +| 30 | [challenge-huffman](https://github.com/blissful-coder/CodingChallenges/tree/main/challenge-huffman) | C++ | [Anurag Negi](https://github.com/blissful-coder) | +| 31 | [huffman-encoder-c](https://github.com/yannvanhalewyn/coding-challenges/tree/main/huffman-encoder-c) | C | [Yann Vanhalewyn](https://github.com/yannvanhalewyn) | +| 32 | [huffman-encoder-rust](https://github.com/yannvanhalewyn/coding-challenges/tree/main/huffman-encoder-rust) | Rust | [Yann Vanhalewyn](https://github.com/yannvanhalewyn) |