This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
n = 2;
p = ['* ';'**'];
assert(isequal(pyramid(n),p));
|
2 | Pass |
n = 3;
p = ['* ';'** ';'***'];
assert(isequal(pyramid(n),p));
|
3 | Pass |
n = 4;
p = ['* ';'** ';'*** ';'****'];
assert(isequal(pyramid(n),p));
|
4 | Pass |
n = 10;
p = ['* ';
'** ';
'*** ';
'**** ';
'***** ';
'****** ';
'******* ';
'******** ';
'********* ';
'**********'];
assert(isequal(pyramid(n),p));
|
367 Solvers
232 Solvers
Rotate and display numbered tile
221 Solvers
100 Solvers
402 Solvers