Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x =[3 4 5];
y_correct = 0;
assert(isequal(your_fcn_name(x),y_correct))
ans =
0
|
2 | Pass |
%%
x = [3 4 0];
y_correct = 1;
assert(isequal(your_fcn_name(x),y_correct))
ans =
1
|
Project Euler: Problem 7, Nth prime
522 Solvers
Back to basics 19 - character types
225 Solvers
Set the array elements whose value is 13 to 0
941 Solvers
203 Solvers
1223 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!