sum-of-multiples
This commit is contained in:
parent
782185e317
commit
2df915b5d4
7 changed files with 365 additions and 0 deletions
39
rust/sum-of-multiples/.exercism/config.json
Normal file
39
rust/sum-of-multiples/.exercism/config.json
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
{
|
||||
"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"
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue