33## The Sieve of Eratosthenes
44
55Prime numbers have many modern day applications and a long history in
6- mathematics. Utilizing your own resources research the sieve of Eratosthenes,
6+ mathematics. Utilizing your own resources, research the sieve of Eratosthenes,
77an algorithm for generating prime numbers. Based on your research, implement
88an API that allows the caller to retrieve the Nth prime number.
9- Some stub code and a test suite have been provided as a convenience, however ,
9+ Some stub code and a test suite have been provided as a convenience. However ,
1010you are encouraged to deviate from Eratosthenes's algorithm, modify the
11- existing functions/methods or anything else that might showcase your ability
11+ existing functions/methods, or anything else that might showcase your ability;
1212provided the following requirements are satisfied.
1313
14- You must author your work in either Go, JavaScript/TypeScript, or C# - all
15- other language submissions will be rejected. Stub code has been provided so
14+ You must author your work in Go, JavaScript/TypeScript, or C# - all
15+ other language submissions will be rejected. Stub code has been provided, so
1616please choose from one of the provided language stubs that is most
17- appropriate based on your own skill set and the position you are applying for.
17+ relevant to your skill set and the position you are applying for.
1818
1919### Requirements
2020
@@ -29,7 +29,7 @@ appropriate based on your own skill set and the position you are applying for.
2929
3030### Considerations
3131
32- You may add more tests or restructure tests, but you may NOT change or remove
32+ You may add more tests or restructure existing tests, but you may NOT change or remove
3333the existing test outcomes; eg- f(0)=2, f(19)=71, f(99)=541, ..., f(10000000)=179424691
3434
3535During the technical interview, your submission will be discussed, and you will be evaluated in the following areas:
0 commit comments