It's amazing that your solution size is just 10. I guest it contains just one line of code.
Do you mind sharing it?
Thank you.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = 3;
y_correct = 3;
assert(isequal(meanOfPrimes(x),y_correct))
ans =
[]
|
2 | Pass |
%%
x = [1 2 3];
y_correct = 2.5;
assert(isequal(meanOfPrimes(x),y_correct))
ans =
[]
|
3 | Pass |
%%
x = [3 3; 3 3];
y_correct = 3;
assert(isequal(meanOfPrimes(x),y_correct))
ans =
[]
|
4 | Pass |
%%
x = [7 3 8 8]';
y_correct = 5;
assert(isequal(meanOfPrimes(x),y_correct))
ans =
[]
|
Back to basics 6 - Column Vector
908 Solvers
Implement simple rotation cypher
943 Solvers
856 Solvers
Magic is simple (for beginners)
2749 Solvers
615 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!