Skip to content

jbuberel/prime_finder

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

prime_finder

Demonstration web service for finding the prime number less than or equal to an upper bound.

Once deployed, requests should be in the form of:

http://localhost:8080/prime?limit=1000

The service will respond with a JSON structure:

[
   {
      "sieve":"sundaram",
      "prime":997,
      "limit":1000,
      "compute_time_sec":0.000244736
   },
   {
      "sieve":"eratosthenes",
      "prime":997,
      "limit":1000,
      "compute_time_sec":0.00018688
   }
]

About

Demonstration web service for generating prime numbers.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages