Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 3;
y_correct = 3;
assert(isequal(meanOfPrimes(x),y_correct))
a =
[]
b =
1
a =
3
out =
3
|
2 | Pass |
x = [1 2 3];
y_correct = 2.5;
assert(isequal(meanOfPrimes(x),y_correct))
a =
[]
b =
3
a =
2
a =
2 3
out =
2.5000
|
3 | Pass |
x = [3 3; 3 3];
y_correct = 3;
assert(isequal(meanOfPrimes(x),y_correct))
a =
[]
b =
4
a =
3
a =
3 3
a =
3 3 3
a =
3 3 3 3
out =
3
|
4 | Pass |
x = [7 3 8 8]';
y_correct = 5;
assert(isequal(meanOfPrimes(x),y_correct))
a =
[]
b =
4
a =
7
a =
7 3
out =
5
|
2401 Solvers
701 Solvers
Determine Whether an array is empty
646 Solvers
283 Solvers
413 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!