Wondering if anyone else has a solution for the 1st problem on the online course. The python program that finds the first 1000 prime numbers. I have a solution but apparently it is not very efficient because it is taking forever to run.
There are a bunch of efficient algorithms out there for generating prime nums, such as the Sieve of Eratosthenes, but for the first 6.00 assignment even simply caching primes you've already found would be very quick
trial division + caching* would be fast enough.... for tiny primes like 7919 even trial division without caching is good enough :-D
I programmed it to look for factors whos product was the number I was testing. The test started out true unless it found the two factors. That worked fine for the 1st 100 primes or so, but the 'trues per second' seem to be on the wrong end of an retricemptote approaching 0. lol
only check for factors till sqrt(n)
Great. If you like, you can post the code on a site like http://ideone.com and we can take a look at it.
Maybe. I doubt it's impressive. This is the first program I've ever written.
Took me a long time, too...
That's okay; the first time I tried out 6.00, it took me ages to get used to it.
Turns out I hadn't watched the lecture that spelled this out yet. Light bulbs!!! I redid it and it runs in about 10 seconds now. I learned a lot messing around though.
Join our real-time social learning platform and learn together with your friends!