This website uses cookies to enhance the user experience

Check if Number is Prime

Difficulty: 🐣 Easy

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
  • 1 <= n <= 10^9

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.

console.log(isPrime(5));  // Output: True
console.log(isPrime(4));  // Output: False
function isPrime(n) {
// YOUR SOLUTION HERE
}

Memory: 0

CPU: 0