Dear All,
In today's hands on session I had hoped to pick a biologically relevant problem and have a go at it. Instead I wrote simple codes to
1) compute N prime numbers / prime numbers till N
2) writing and reading csv files
I started out with writing an algorithm for computing N prime numbers:
1) start with a list of primes containing the number 2
2) take the next number
3) see if it is divisible by any number less than itself
4) if it is not divisible, then this number is prime
5) if you don't have N prime numbers, go back to step 2
Feel free to write to me if you are stuck at any point.
Best,
Umesh Mohan