DSA Day 26/100
Topic: Mathematical
Questions Successfully Completed: 1
1) Primality TestEasy
Primality Test
QuestionInput: N = 5 Output: Yes Explanation: 5 is only divisible by 1 and itself. So, 5 is a prime number.
public boolean isPrime(int N) {
if(N=...
preetikaprakash.hashnode.dev1 min read