Problem Statement
Given an integer n
, determine if it is a prime number. A prime number is a number greater than 1 with no positive divisors other than 1 and itself.
Example
Input: n = 5
Output: True
Explanation: 5 is a prime number.
Input: n = 4
Output: False
Explanation: 4 is not a prime number.
Constraints
Expected Challenge Output
When the function isPrime
is called with the given example inputs, the expected outputs are:
- For the input
5
, the output is True
.
- For the input
4
, the output is False
.