summaryrefslogtreecommitdiff
path: root/go/run-length-encoding/.exercism/config.json
blob: 9c9538f1c4c0a2acb08542eb3e2e0b60b49864d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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"
}