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))
ans =
[]
|
2 | Pass |
z = 2;
a = 1;
v_correct = 4*pi;
assert(isequal(pizza(z,a),v_correct))
ans =
[]
|
3 | Pass |
z = 1;
a = 2;
v_correct = 2*pi;
assert(isequal(pizza(z,a),v_correct))
ans =
[]
|
4 | Pass |
z = 1;
a = 2;
v_correct = 2*pi;
assert(isequal(pizza(z,a),v_correct))
ans =
[]
|
Back to basics 20 - singleton dimensions
225 Solvers
272 Solvers
Given a window, how many subsets of a vector sum positive
673 Solvers
1391 Solvers
363 Solvers