Newer
Older
exercism-cpp / luhn / .exercism / config.json
@Wook Song Wook Song on 29 Oct 2022 539 bytes Easy: Add a solution for "Luhn"
{
  "blurb": "Given a number determine whether or not it is valid per the Luhn formula.",
  "authors": [
    "junming403"
  ],
  "contributors": [
    "elyashiv",
    "KevinWMatthews",
    "patricksjackson",
    "siebenschlaefer"
  ],
  "files": {
    "solution": [
      "luhn.cpp",
      "luhn.h"
    ],
    "test": [
      "luhn_test.cpp"
    ],
    "example": [
      ".meta/example.cpp",
      ".meta/example.h"
    ]
  },
  "source": "The Luhn Algorithm on Wikipedia",
  "source_url": "http://en.wikipedia.org/wiki/Luhn_algorithm"
}