1
1
Fork 0
exercism/jq/luhn/.exercism/config.json
Christina Sørensen c2076f3645
feat(jq): luhn attempt
Signed-off-by: Christina Sørensen <christina@cafkafk.com>
2024-12-15 08:25:47 +01:00

19 lines
392 B
JSON

{
"authors": [
"MatthijsBlom"
],
"files": {
"solution": [
"luhn.jq"
],
"test": [
"test-luhn.bats"
],
"example": [
".meta/example.jq"
]
},
"blurb": "Given a number determine whether or not it is valid per the Luhn formula.",
"source": "The Luhn Algorithm on Wikipedia",
"source_url": "https://en.wikipedia.org/wiki/Luhn_algorithm"
}