exercism/elixir/nth-prime/.exercism/config.json

35 lines
626 B
JSON
Raw Normal View History

2024-06-27 05:56:32 +00:00
{
"authors": [
"petehuang"
],
"contributors": [
"andrewsardone",
"angelikatyborska",
"Cohen-Carlisle",
"dalexj",
"devonestes",
"jinyeow",
"lpil",
"neenjaw",
"parkerl",
"rubysolo",
"sotojuan",
"Teapane",
"waiting-for-dev"
],
"files": {
"solution": [
"lib/prime.ex"
],
"test": [
"test/prime_test.exs"
],
"example": [
".meta/example.ex"
]
},
"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"
}