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 |
z = 1;
a = 1;
v_correct = pi;
assert(isequal(pizza(z,a),v_correct))
|
2 | Pass |
z = 2;
a = 1;
v_correct = 4*pi;
assert(isequal(pizza(z,a),v_correct))
|
3 | Pass |
z = 1;
a = 2;
v_correct = 2*pi;
assert(isequal(pizza(z,a),v_correct))
|
4 | Pass |
z = 2;
a = 2;
v_correct = 8*pi;
assert(isequal(pizza(z,a),v_correct))
|
298 Solvers
173 Solvers
Back to basics 12 - Input Arguments
467 Solvers
Compute a dot product of two vectors x and y
645 Solvers
203 Solvers