Newer
Older
exercism-cpp / sum-of-multiples / .exercism / config.json
@Wook Song Wook Song on 26 Oct 2022 664 bytes Easy: Add a solution for "Sum of Multiples"
{
  "blurb": "Given a number, find the sum of all the multiples of particular numbers up to but not including that number.",
  "authors": [
    "LegalizeAdulthood"
  ],
  "contributors": [
    "cyborgsphinx",
    "duffn",
    "elyashiv",
    "jackhughesweb",
    "KevinWMatthews",
    "kytrinyx",
    "patricksjackson"
  ],
  "files": {
    "solution": [
      "sum_of_multiples.cpp",
      "sum_of_multiples.h"
    ],
    "test": [
      "sum_of_multiples_test.cpp"
    ],
    "example": [
      ".meta/example.cpp",
      ".meta/example.h"
    ]
  },
  "source": "A variation on Problem 1 at Project Euler",
  "source_url": "http://projecteuler.net/problem=1"
}