Problem 52293. Palindromic Primes
If given a monotonic series (increment=1) or a single number, give the corresonding palindromic prime.
Else, if given a random array of numbers, check if the numbers in the array are palindromic prime or not.
Take base 10 as the reference.
Example
input = 2:5;
output = [3 5 7 11];
input = 17;
output = 787;
input = [7 23 47 11 4 10];
output = [1 0 0 1 0 0];
Solution Stats
Problem Comments
-
2 Comments
ChrisR
on 15 Jul 2021
Dyuman, test 3 asks for four numbers, but the answer is a vector with five numbers.
Dyuman Joshi
on 15 Jul 2021
Thanks for pointing it out, Chris. The error has been rectified.
Solution Comments
Show commentsProblem Recent Solvers17
Suggested Problems
-
Count from 0 to N^M in base N.
236 Solvers
-
1126 Solvers
-
Count letters occurence in text, specific to words with a given length.
170 Solvers
-
Create an n-by-n null matrix and fill with ones certain positions
636 Solvers
-
calculate the length of matrix
1943 Solvers
More from this Author31
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!