Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
p = 233;
y_correct = true;
assert(isequal(your_fcn_name(p),y_correct))
|
2 | Pass |
%%
p = 23;
y_correct14 = true;
assert(isequal(your_fcn_name(p),y_correct14))
|
3 | Pass |
%%
p = 22;
y_correct14 = false;
assert(isequal(your_fcn_name(p),y_correct14))
|
4 | Pass |
%%
p = 1 % p must also be a prime number !!
y_correct1t = false;
assert(isequal(your_fcn_name(p),y_correct1t))
p =
1
|
5 | Pass |
%%
p = 14 % p must also be a prime number !!
correct1t = false;
assert(isequal(your_fcn_name(p),correct1t))
p =
14
|
6 | Pass |
%%
p = 29
correct1tp = true;
assert(isequal(your_fcn_name(p),correct1tp))
p =
29
|
How to find the position of an element in a vector without using the find function
2477 Solvers
Project Euler: Problem 8, Find largest product in a large string of numbers
315 Solvers
579 Solvers
Arrange vector in ascending order
624 Solvers
273 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!