Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = 3;
y_correct = 3;
assert(isequal(meanOfPrimes(x),y_correct))
t =
1
|
2 | Pass |
%%
x = [1 2 3];
y_correct = 2.5;
assert(isequal(meanOfPrimes(x),y_correct))
t =
1
t =
2
|
3 | Pass |
%%
x = [3 3; 3 3];
y_correct = 3;
assert(isequal(meanOfPrimes(x),y_correct))
t =
1
t =
2
t =
3
t =
4
|
4 | Pass |
%%
x = [7 3 8 8]';
y_correct = 5;
assert(isequal(meanOfPrimes(x),y_correct))
t =
1
t =
2
|
Project Euler: Problem 3, Largest prime factor
379 Solvers
232 Solvers
MATCH THE STRINGS (2 CHAR) very easy
250 Solvers
360 Solvers
Matlab Basics - y as a function of x
339 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!