Interview Guides
Given an integer n, write a function that returns True if n is a prime number and False otherwise. A prime number is greater than 1 and has exactly two positive divisors: 1 and itself.
-10^9 <= n <= 10^90, and 1O(n) time by limiting divisor checks