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));
|
Find relatively common elements in matrix rows
865 Solvers
192 Solvers
Given a window, how many subsets of a vector sum positive
743 Solvers
Who is the smartest MATLAB programmer?
561 Solvers
203 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!