Problem 54700. Leyland Primes
Given an array of numbers(>1), check if the corresponding numbers are Leyland Primes (Leyland Number and a prime) or not.
Example -
x=17, y=1 (2^3+3^2 and a prime)
x=1, y=0 (3^2-2^3 but not a prime)
x=2, y=0 (a prime but not a layland number)
x=8, y=0 (2^2+2^2 but not a prime)
x=37, y=1 (a prime but not a layland number)
x=7, y=1 (2^5-5^2 and a prime)
See the test suite for banned functions -
Solution Stats
Problem Comments
-
4 Comments
Show
1 older comment
Dyuman Joshi
on 5 Jun 2022
Tim, William, Chris -
The faulty test case has been edited out of the test suite. Apologies for the inconvenience. Please attempt/edit your answer accordingly.
ChrisR
on 5 Jun 2022
Dyuman, it looks like Test 6 is still being applied.
Dyuman Joshi
on 5 Jun 2022
I thought commenting it out would work, but it didn't. I have removed it completely and rescored the solutions, good to go.
Do rate the problem!
Solution Comments
Show commentsProblem Recent Solvers6
Suggested Problems
-
Renaming a field in a structure array
1551 Solvers
-
14766 Solvers
-
Calculate the Hamming distance between two strings
325 Solvers
-
Find the index of the largest value in any vector X=[4,3,4,5,9,12,0,4.....5]
382 Solvers
-
Split bread like the Pharaohs - Egyptian fractions and greedy algorithm
80 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!