This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 3;
y_correct = 3;
assert(isequal(meanOfPrimes(x),y_correct))
g =
3
h =
3
v =
2 3
out =
0
cout =
0
out =
3
cout =
1
out =
3
|
2 | Pass |
x = [1 2 3];
y_correct = 2.5;
assert(isequal(meanOfPrimes(x),y_correct))
g =
3
h =
3
v =
2 3
out =
0
cout =
0
out =
2
cout =
1
out =
5
cout =
2
out =
2.5000
|
3 | Pass |
x = [3 3; 3 3];
y_correct = 3;
assert(isequal(meanOfPrimes(x),y_correct))
g =
3 3
h =
3
v =
2 3
out =
0
cout =
0
out =
3
cout =
1
out =
6
cout =
2
out =
3
|
4 | Pass |
x = [7 3 8 8]';
y_correct = 5;
assert(isequal(meanOfPrimes(x),y_correct))
g =
8
h =
8
v =
2 3 5 7
out =
0
cout =
0
out =
7
cout =
1
out =
10
cout =
2
out =
5
|
2935 Solvers
Project Euler: Problem 1, Multiples of 3 and 5
1063 Solvers
Magic is simple (for beginners)
1111 Solvers
Replace multiples of 5 with NaN
282 Solvers
295 Solvers