Newer
Older
exercism-cpp / sieve / .exercism / config.json
{
  "blurb": "Use the Sieve of Eratosthenes to find all the primes from 2 up to a given number.",
  "authors": [
    "LegalizeAdulthood"
  ],
  "contributors": [
    "cyborgsphinx",
    "elyashiv",
    "HenryRLee",
    "jackhughesweb",
    "KevinWMatthews",
    "kytrinyx",
    "patricksjackson"
  ],
  "files": {
    "solution": [
      "sieve.cpp",
      "sieve.h"
    ],
    "test": [
      "sieve_test.cpp"
    ],
    "example": [
      ".meta/example.cpp",
      ".meta/example.h"
    ]
  },
  "source": "Sieve of Eratosthenes at Wikipedia",
  "source_url": "http://en.wikipedia.org/wiki/Sieve_of_Eratosthenes"
}