May 6, 2020
Go Interview Question #1 - Find all the prime numbers less than or equal to 'n'
As a means of keeping my logic sharp and helping others prepare for Go interviews I decided to release a solved interview question every week or so.
In this post, let’s write a function in Go that generates us all the primes at or below a specific integer.
To even attempt this question, we need to know the exact definition of a prime number. According to Wolfram, A prime number is a positive integer p>1 that has no positive integer divisors other than 1 and p itself.
Read more