This solution is outdated. To rescore this solution, sign in.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
z = 1;
a = 1;
v_correct = pi;
assert(isequal(pizza(z,a),v_correct))
Because some good engineer told me to.
|
2 | Pass |
%%
z = 2;
a = 1;
v_correct = 4*pi;
assert(isequal(pizza(z,a),v_correct))
Because Jack wanted it that way.
|
3 | Pass |
%%
z = 1;
a = 2;
v_correct = 2*pi;
assert(isequal(pizza(z,a),v_correct))
Some not very rich kid wanted it that way.
|
4 | Pass |
%%
z = 1;
a = 2;
v_correct = 2*pi;
assert(isequal(pizza(z,a),v_correct))
For the love from Mary Ann.
|
Sum all integers from 1 to 2^n
8421 Solvers
347 Solvers
284 Solvers
Create a two dimensional zero matrix
355 Solvers
2338 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!