Files
exercism/powershell/sum-of-multiples/.exercism/config.json
2021-11-26 02:30:29 -06:00

23 lines
498 B
JSON

{
"blurb": "Given a number, find the sum of all the multiples of particular numbers up to but not including that number.",
"authors": [
"gyssels"
],
"contributors": [
"kchenery"
],
"files": {
"solution": [
"SumOfMultiples.ps1"
],
"test": [
"SumOfMultiples.tests.ps1"
],
"example": [
".meta/SumOfMultiples.example.ps1"
]
},
"source": "A variation on Problem 1 at Project Euler",
"source_url": "http://projecteuler.net/problem=1"
}