exercism/c/collatz-conjecture/.exercism/config.json

28 lines
614 B
JSON

{
"authors": [
"RealBarrettBrown"
],
"contributors": [
"bcc32",
"h-3-0",
"patricksjackson",
"QLaille",
"ryanplusplus",
"wolf99"
],
"files": {
"solution": [
"collatz_conjecture.c",
"collatz_conjecture.h"
],
"test": [
"test_collatz_conjecture.c"
],
"example": [
".meta/example.c"
]
},
"blurb": "Calculate the number of steps to reach 1 using the Collatz conjecture.",
"source": "An unsolved problem in mathematics named after mathematician Lothar Collatz",
"source_url": "https://en.wikipedia.org/wiki/3x_%2B_1_problem"
}