exercism-perl5

Repository for my Perl 5 Exercism exercises
git clone git://git.samirparikh.com/exercism-perl5
Log | Files | Refs

config.json (556B) - raw


      1 {
      2   "blurb": "Given a number, find the sum of all the multiples of particular numbers up to but not including that number.",
      3   "authors": [
      4     "bistik"
      5   ],
      6   "contributors": [
      7     "alexkalderimis",
      8     "duffn",
      9     "kytrinyx",
     10     "m-dango",
     11     "rfilipo"
     12   ],
     13   "files": {
     14     "solution": [
     15       "SumOfMultiples.pm"
     16     ],
     17     "test": [
     18       "sum-of-multiples.t"
     19     ],
     20     "example": [
     21       ".meta/solutions/SumOfMultiples.pm"
     22     ]
     23   },
     24   "source": "A variation on Problem 1 at Project Euler",
     25   "source_url": "http://projecteuler.net/problem=1"
     26 }