cheating
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 3;
y_correct = 3;
assert(isequal(meanOfPrimes(x),y_correct))
q =
1
w =
1
out =
3
|
2 | Pass |
x = [1 2 3];
y_correct = 2.5;
assert(isequal(meanOfPrimes(x),y_correct))
q =
1
w =
3
out =
2.5000
|
3 | Pass |
x = [3 3; 3 3];
y_correct = 3;
assert(isequal(meanOfPrimes(x),y_correct))
q =
2
w =
2
out =
3
|
4 | Pass |
x = [7 3 8 8]';
y_correct = 5;
assert(isequal(meanOfPrimes(x),y_correct))
q =
4
w =
1
ans =
logical
1
out =
5
|
482 Solvers
Find the maximum number of decimal places in a set of numbers
734 Solvers
274 Solvers
664 Solvers
Convert from Fahrenheit to Celsius
7118 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!