config.json 476 B

123456789101112131415161718192021222324
  1. {
  2. "authors": [
  3. "CRivasGomez"
  4. ],
  5. "contributors": [
  6. "masters3d",
  7. "SleeplessByte",
  8. "angelikatyborska"
  9. ],
  10. "files": {
  11. "solution": [
  12. "luhn.ts"
  13. ],
  14. "test": [
  15. "luhn.test.ts"
  16. ],
  17. "example": [
  18. ".meta/proof.ci.ts"
  19. ]
  20. },
  21. "blurb": "Given a number determine whether or not it is valid per the Luhn formula.",
  22. "source": "The Luhn Algorithm on Wikipedia",
  23. "source_url": "https://en.wikipedia.org/wiki/Luhn_algorithm"
  24. }