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 | Fail |
n1 = 3;
n2 = 5;
tf_correct = 0;
assert(isequal(prime_to_each_other(n1, n2),tf_correct))
ans =
3
ans =
5
|
2 | Fail |
n1 = 27;
n2 = 123;
tf_correct = 1;
assert(isequal(prime_to_each_other(n1, n2),tf_correct))
ans =
3 3 3
ans =
3 41
|
3 | Fail |
n1 = 36;
n2 = 49;
tf_correct = 0;
assert(isequal(prime_to_each_other(n1, n2),tf_correct))
ans =
2 2 3 3
ans =
7 7
|
4 | Fail |
n1 = 27;
n2 = 28;
tf_correct = 0;
assert(isequal(prime_to_each_other(n1, n2),tf_correct))
ans =
3 3 3
ans =
2 2 7
|
232 Solvers
227 Solvers
484 Solvers
359 Solvers
465 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!