From 4e4695c8f145d96535da801d5711b1afef687a58 Mon Sep 17 00:00:00 2001 From: Tal Marsh Date: Thu, 10 Sep 2026 11:24:24 +0200 Subject: [PATCH 1/2] Add challenge-text-editor.md with solutions list --- Solutions/challenge-text-editor.md | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 Solutions/challenge-text-editor.md diff --git a/Solutions/challenge-text-editor.md b/Solutions/challenge-text-editor.md new file mode 100644 index 0000000..7043411 --- /dev/null +++ b/Solutions/challenge-text-editor.md @@ -0,0 +1,9 @@ +# Build Your Own Text Editor + +The Challenge: [Build Your Own Text Editor](https://codingchallenges.fyi/challenges/challenge-text-editor) + +The shared solutions: + +| No. | Solution | Language | Author | +|-----|-------------------------------------------------------------|----------|------------------------------------------------------| +| 1 | [tccvim](https://github.com/toewl-devv/tccvim) | Rust | [toewl-devv](https://github.com/toewl-devv) | From 3f4d18fc47b615c678f5d2bf2b9fc64fd1d3b9fd Mon Sep 17 00:00:00 2001 From: Tal Marsh Date: Thu, 10 Sep 2026 11:28:38 +0200 Subject: [PATCH 2/2] Add 'Build your own Text Editor' to README --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 7116274..2af6419 100644 --- a/README.md +++ b/README.md @@ -88,5 +88,6 @@ Essentially: - [Build Your Own BitTorrent Client](Solutions/challenge-bittorrent.md) - [Build Your Own Bitcask](Solutions/challenge-bitcask.md) - [Build your own Docker](Solutions/challenge-docker.md) -- [Build your own Sort Visualiser](Solutions/challenge-sort-visualiser.md) +- [Build your own Sort Visualiser](Solutions/challenge-sort-visualiser.md) +- [Build your own Text Editor](Solutions/challenge-text-editor.md)

(🔼 Back to top)