Problem 2055. Create numeric palindromes and their square roots
Given a number n (1<=n<=9), return a left justified numeric matrix p with all the palindromes of the form 1 to n and back to 1. Use 0 for empty values. Similarly return the square root matrix in the same form.
Example
n=2;
p=[1 0 0; 1 2 1];
r=[1 0 0; 1 1 0];
Solution Stats
Problem Comments
-
1 Comment
Christian Schröder
on 18 Feb 2023
The example given is at odds with the test suite: r should always be an n-by-n matrix, so for n = 2, r = [1 0; 1 1] is correct.
Solution Comments
Show commentsProblem Recent Solvers25
Suggested Problems
-
Given an unsigned integer x, find the largest y by rearranging the bits in x
1985 Solvers
-
236 Solvers
-
354 Solvers
-
Number of 1s in a binary string
10914 Solvers
-
Are all the three given point in the same line?
598 Solvers
More from this Author11
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!