Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jelemux/kata19_word-chains
My implementation of [_Kata 19: Word Chains_](http://codekata.com/kata/kata19-word-chains/) using recursive Goroutines.
https://github.com/jelemux/kata19_word-chains
Last synced: 3 days ago
JSON representation
My implementation of [_Kata 19: Word Chains_](http://codekata.com/kata/kata19-word-chains/) using recursive Goroutines.
- Host: GitHub
- URL: https://github.com/jelemux/kata19_word-chains
- Owner: jelemux
- Created: 2022-11-19T14:47:28.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2022-11-19T14:49:06.000Z (about 2 years ago)
- Last Synced: 2024-06-19T23:03:40.538Z (7 months ago)
- Language: Go
- Size: 854 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
# Kata 19: Word Chains
My implementation of [_Kata 19: Word Chains_](http://codekata.com/kata/kata19-word-chains/) using recursive Goroutines.
It's probably faster than using a graph (because creating the graph takes a lot of time), but it costs lots of memory.
So much in fact, that it was often killed by the OOM killer when testing with longer words on my machine.