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))
|
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 = 1;
a = 2;
v_correct = 2*pi;
assert(isequal(pizza(z,a),v_correct))
|
Replace NaNs with the number that appears to its left in the row.
2018 Solvers
Get the length of a given vector
3561 Solvers
Try 1.5.4: Celsius to Fahrenheit
609 Solvers
Number of digits in an integer
336 Solvers
2237 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!