exercism-solutions/rust/nth-prime/.exercism/config.json

38 lines
657 B
JSON
Raw Normal View History

2024-11-06 12:39:39 -06:00
{
"authors": [
"sacherjj"
],
"contributors": [
"attilahorvath",
"cbzehner",
"coriolinus",
"cwhakes",
"eddyp",
"efx",
"ErikSchierboom",
"imbolc",
"lutostag",
"nfiles",
"petertseng",
"rofrol",
"stringparser",
"xakon",
"ZapAnton"
],
"files": {
"solution": [
"src/lib.rs",
"Cargo.toml"
],
"test": [
"tests/nth-prime.rs"
],
"example": [
".meta/example.rs"
]
},
"blurb": "Given a number n, determine what the nth prime is.",
"source": "A variation on Problem 7 at Project Euler",
"source_url": "https://projecteuler.net/problem=7"
}