exercism/zig/sum-of-multiples/.exercism/config.json
2024-07-28 17:45:02 -04:00

19 lines
443 B
JSON

{
"authors": [
"ee7"
],
"files": {
"solution": [
"sum_of_multiples.zig"
],
"test": [
"test_sum_of_multiples.zig"
],
"example": [
".meta/example.zig"
]
},
"blurb": "Given a number, find the sum of all the multiples of particular numbers up to but not including that number.",
"source": "A variation on Problem 1 at Project Euler",
"source_url": "https://projecteuler.net/problem=1"
}