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
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.
Solution Comments
Show commentsProblem Recent Solvers91
Suggested Problems
-
Program an exclusive OR operation with logical operators
729 Solvers
-
Project Euler: Problem 9, Pythagorean numbers
1310 Solvers
-
We love vectorized solutions. Problem 1 : remove the row average.
841 Solvers
-
Replace multiples of 5 with NaN
449 Solvers
-
Convert given decimal number to binary number.
2149 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!