Given n, odd number > 1, return n by n matrix consist of "null" and "*" characters arranged like a diamond.
No toolbox functions please.
n = 3
m =
* * * *
n = 7
m =
* * * * * * * * * * * *
Solution Stats
Problem Comments
4 Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers114
Suggested Problems
-
1362 Solvers
-
It dseon't mettar waht oedrr the lrettes in a wrod are.
2144 Solvers
-
Compute a dot product of two vectors x and y
1053 Solvers
-
Given a window, how many subsets of a vector sum positive
873 Solvers
-
Calculate the Number of Sign Changes in a Row Vector (No Element Is Zero)
945 Solvers
More from this Author1
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
may I suggest reinforcing your test suite using isequal or strcmp to hardcoded diamond strings?
updated!
its unclear what the problem wants plz fix
Needs better test suite rather than just checking random things (which is better suited to be the secondary fail safe not the primary).
This is just lazy from the OP.