config.json 472 B

1234567891011121314151617181920212223
  1. {
  2. "authors": [
  3. "CRivasGomez"
  4. ],
  5. "contributors": [
  6. "masters3d",
  7. "SleeplessByte"
  8. ],
  9. "files": {
  10. "solution": [
  11. "sieve.ts"
  12. ],
  13. "test": [
  14. "sieve.test.ts"
  15. ],
  16. "example": [
  17. ".meta/proof.ci.ts"
  18. ]
  19. },
  20. "blurb": "Use the Sieve of Eratosthenes to find all the primes from 2 up to a given number.",
  21. "source": "Sieve of Eratosthenes at Wikipedia",
  22. "source_url": "https://en.wikipedia.org/wiki/Sieve_of_Eratosthenes"
  23. }