comptime sieve

This commit is contained in:
Rorik Star Platinum 2025-12-11 01:02:04 +03:00
parent 485252a76f
commit 9624356fec
14 changed files with 685 additions and 0 deletions

View file

@ -0,0 +1,36 @@
{
"authors": [
"sacherjj"
],
"contributors": [
"attilahorvath",
"coriolinus",
"cwhakes",
"eddyp",
"efx",
"ErikSchierboom",
"lutostag",
"nathanielknight",
"nfiles",
"petertseng",
"rofrol",
"stringparser",
"xakon",
"ZapAnton"
],
"files": {
"solution": [
"src/lib.rs",
"Cargo.toml"
],
"test": [
"tests/prime_factors.rs"
],
"example": [
".meta/example.rs"
]
},
"blurb": "Compute the prime factors of a given natural number.",
"source": "The Prime Factors Kata by Uncle Bob",
"source_url": "https://web.archive.org/web/20221026171801/http://butunclebob.com/ArticleS.UncleBob.ThePrimeFactorsKata"
}