Problem 1078. Make a diamond
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
Show
1 older comment
Amin Bashi
on 1 Dec 2012
updated!
Nikolaos Nikolaou
on 4 Apr 2020
its unclear what the problem wants plz fix
Dyuman Joshi
on 31 Dec 2020
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.
Solution Comments
Show commentsProblem Recent Solvers91
Suggested Problems
-
Sort a list of complex numbers based on far they are from the origin.
5694 Solvers
-
Sum all integers from 1 to 2^n
15875 Solvers
-
Back to basics 22 - Rotate a matrix
910 Solvers
-
1411 Solvers
-
5468 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!