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

22 lines
501 B
JSON

{
"authors": [
"massivelivefun"
],
"contributors": [
"ee7"
],
"files": {
"solution": [
"collatz_conjecture.zig"
],
"test": [
"test_collatz_conjecture.zig"
],
"example": [
".meta/example.zig"
]
},
"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"
}