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));
|
1900 Solvers
235 Solvers
middleAsColumn: Return all but first and last element as a column vector
387 Solvers
Sum the entries of each column of a matrix which satisfy a logical condition.
136 Solvers
248 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!