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

27 lines
586 B
JSON
Raw Normal View History

2024-06-27 03:06:52 +00:00
{
"authors": [
"Tuxified"
],
"contributors": [
"angelikatyborska",
"Cohen-Carlisle",
"devonestes",
"neenjaw",
"sotojuan"
],
"files": {
"solution": [
"lib/collatz_conjecture.ex"
],
"test": [
"test/collatz_conjecture_test.exs"
],
"example": [
".meta/example.ex"
]
},
"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"
}