exercism/rust/sum-of-multiples/.exercism/config.json

39 lines
748 B
JSON

{
"authors": [
"IanWhitney"
],
"contributors": [
"coriolinus",
"cwhakes",
"eddyp",
"efx",
"ErikSchierboom",
"GoneUp",
"hekrause",
"leoyvens",
"lutostag",
"mkantor",
"nfiles",
"petertseng",
"rofrol",
"sshine",
"stringparser",
"xakon",
"ZapAnton"
],
"files": {
"solution": [
"src/lib.rs",
"Cargo.toml"
],
"test": [
"tests/sum_of_multiples.rs"
],
"example": [
".meta/example.rs"
]
},
"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"
}