Determine if a given integer is a prime number. A prime number is a natural number greater than 1 that has no positive divisors other than 1 and itself.
Examples:
Input: num = 7
Output: true
Explanation: 7 is only divisible by 1 and 7
Input: num = 12
Output: false
Explanation: 12 is divisible by 2, 3, 4, and 6
Input: num = 2
Output: true
Explanation: 2 is the smallest prime number
Apex Code Editor
Welcome to Lightning Challenge!
Create an Account
Sign up to track your progress, earn points, and compete with others. Your solutions will be saved automatically.
Create accountHow It Works
- • Write your solution in the code editor
- • Connect your Salesforce org to test
- • Submit to check if your solution passes
- • Use hints if you get stuck
Note
You can test your code by connecting to Salesforce, but to save your progress and earn points, you'll need to create an account. Your solutions and achievements will be tracked automatically once you're logged in.