summaryrefslogtreecommitdiff
path: root/go/run-length-encoding/.exercism/config.json
diff options
context:
space:
mode:
Diffstat (limited to 'go/run-length-encoding/.exercism/config.json')
-rw-r--r--go/run-length-encoding/.exercism/config.json32
1 files changed, 32 insertions, 0 deletions
diff --git a/go/run-length-encoding/.exercism/config.json b/go/run-length-encoding/.exercism/config.json
new file mode 100644
index 0000000..9c9538f
--- /dev/null
+++ b/go/run-length-encoding/.exercism/config.json
@@ -0,0 +1,32 @@
+{
+ "blurb": "Implement run-length encoding and decoding.",
+ "authors": [
+ "MatForsberg"
+ ],
+ "contributors": [
+ "bitfield",
+ "ekingery",
+ "ferhatelmas",
+ "hilary",
+ "ilmanzo",
+ "leenipper",
+ "sebito91",
+ "eklatzer"
+ ],
+ "files": {
+ "solution": [
+ "run_length_encoding.go"
+ ],
+ "test": [
+ "run_length_encoding_test.go"
+ ],
+ "example": [
+ ".meta/example.go"
+ ],
+ "editor": [
+ "cases_test.go"
+ ]
+ },
+ "source": "Wikipedia",
+ "source_url": "https://en.wikipedia.org/wiki/Run-length_encoding"
+}