comptime sieve
This commit is contained in:
parent
485252a76f
commit
9624356fec
14 changed files with 685 additions and 0 deletions
37
rust/sieve/.exercism/config.json
Normal file
37
rust/sieve/.exercism/config.json
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
{
|
||||
"authors": [
|
||||
"IanWhitney"
|
||||
],
|
||||
"contributors": [
|
||||
"ashleygwilliams",
|
||||
"ClashTheBunny",
|
||||
"coriolinus",
|
||||
"cwhakes",
|
||||
"efx",
|
||||
"ErikSchierboom",
|
||||
"IanWhitney",
|
||||
"lutostag",
|
||||
"mkantor",
|
||||
"nfiles",
|
||||
"petertseng",
|
||||
"rofrol",
|
||||
"stringparser",
|
||||
"xakon",
|
||||
"ZapAnton"
|
||||
],
|
||||
"files": {
|
||||
"solution": [
|
||||
"src/lib.rs",
|
||||
"Cargo.toml"
|
||||
],
|
||||
"test": [
|
||||
"tests/sieve.rs"
|
||||
],
|
||||
"example": [
|
||||
".meta/example.rs"
|
||||
]
|
||||
},
|
||||
"blurb": "Use the Sieve of Eratosthenes to find all the primes from 2 up to a given number.",
|
||||
"source": "Sieve of Eratosthenes at Wikipedia",
|
||||
"source_url": "https://en.wikipedia.org/wiki/Sieve_of_Eratosthenes"
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue