**NOTE: This is related to a college assignment. I'm only requesting some guidance in the right direction.
I have a single threaded solution to find prime numbers (Homework is to convert to multi threaded solution). It currently says to start off with the list of numbers to be checked. Starting with the first prime, 2. (for 0...N).
I want to be able to divide up the list (0...N) to something like (0...25), (26...50), (51...75) and (76...100).
If the starting point for each list is the first prime. How do I find it? Must I have a seperate function to get that?
Thanks.