MegaPrime Numbers Problem Statement
Given two integers Left
and Right
, determine the count of 'megaprime' numbers within the inclusive range from 'Left' to 'Right'. A 'megaprime' number is a prime number where each digit is also a prime number.
Example:
Input:
Left = 23, Right = 37
Output:
2
Explanation:
The prime numbers between 23 and 37 are 23, 29, 31, and 37. Among these:
- 23 is a 'megaprime' because 2 and 3 are prime.
- 29 is not a 'megaprime' because 9 is not prime.
- 31 is not a 'megaprime' because 1 is not prime.
- 37 is a 'megaprime' because 3 and 7 are prime.
Constraints:
1 ≤ T ≤ 100
1 ≤ Left ≤ Right ≤ 8000
- Time Limit: 1 second
Note:
You are not required to print anything; it has been taken care of. Your task is to implement the function and return the count of 'megaprime' numbers for each test case.

AnswerBot
4mo
Count the 'megaprime' numbers within a given range of integers.
Iterate through the range of integers from Left to Right.
For each number, check if it is a prime number and if all its digits are prime.
I...read more
Help your peers!
Add answer anonymously...
Daffodil Software Software Developer interview questions & answers
A Software Developer was asked Q. What are your qualifications?
A Software Developer was asked Q. Given an array of numbers, find the largest prime number in the array using the ...read more
A Software Developer was asked Q. Write a program to print the pattern.
Popular interview questions of Software Developer
A Software Developer was asked 5mo agoQ1. What are your hobbies?
A Software Developer was asked Q2. What are your qualifications?
A Software Developer was asked Q3. Given an array of numbers, find the largest prime number in the array using the ...read more
>
Daffodil Software Software Developer Interview Questions
Stay ahead in your career. Get AmbitionBox app


Trusted by over 1.5 Crore job seekers to find their right fit company
80 L+
Reviews
10L+
Interviews
4 Cr+
Salaries
1.5 Cr+
Users
Contribute to help millions
AmbitionBox Awards
Get AmbitionBox app

