Newer
Older
exercism-cpp / collatz-conjecture / .exercism / config.json
@Wook Song Wook Song on 12 Oct 2022 601 bytes Easy: Add solutions for two exercises
{
  "blurb": "Calculate the number of steps to reach 1 using the Collatz conjecture",
  "authors": [
    "marvelou-s"
  ],
  "contributors": [
    "elyashiv",
    "KevinWMatthews",
    "patricksjackson"
  ],
  "files": {
    "solution": [
      "collatz_conjecture.cpp",
      "collatz_conjecture.h"
    ],
    "test": [
      "collatz_conjecture_test.cpp"
    ],
    "example": [
      ".meta/example.cpp",
      ".meta/example.h"
    ]
  },
  "source": "An unsolved problem in mathematics named after mathematician Lothar Collatz",
  "source_url": "https://en.wikipedia.org/wiki/3x_%2B_1_problem"
}