Find the palindrome numbers (two or more digits) from 1 to n where n is the number passed to the function.
Solution Stats
Problem Comments
3 Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers73
Suggested Problems
-
Find the numeric mean of the prime numbers in a matrix.
9133 Solvers
-
Least common multiple of many numbers
255 Solvers
-
Back to basics 19 - character types
272 Solvers
-
Find the dimensions of a matrix
558 Solvers
-
Matlab Basics II - Count rows in a matrix
405 Solvers
More from this Author8
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
Problem asks for palindromes starting at 1, but test cases start at 100.
Now it goes down to 10, but wouldn't single digits be considered palindromes as well?
Additional test cases were added and the description slightly enhanced.