exercism/zig/word-count/.exercism/config.json
2024-07-28 17:45:02 -04:00

18 lines
380 B
JSON

{
"authors": [
"ee7"
],
"files": {
"solution": [
"word_count.zig"
],
"test": [
"test_word_count.zig"
],
"example": [
".meta/example.zig"
]
},
"blurb": "Given a phrase, count the occurrences of each word in that phrase.",
"source": "This is a classic toy problem, but we were reminded of it by seeing it in the Go Tour."
}