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 |
%%
n1 = 3;
n2 = 5;
tf_correct = 0;
assert(isequal(prime_to_each_other(n1, n2),tf_correct))
|
2 | Pass |
%%
n1 = 27;
n2 = 123;
tf_correct = 1;
assert(isequal(prime_to_each_other(n1, n2),tf_correct))
|
3 | Pass |
%%
n1 = 36;
n2 = 49;
tf_correct = 0;
assert(isequal(prime_to_each_other(n1, n2),tf_correct))
|
4 | Pass |
%%
n1 = 27;
n2 = 28;
tf_correct = 0;
assert(isequal(prime_to_each_other(n1, n2),tf_correct))
|
620 Solvers
Try 1.5.4: Celsius to Fahrenheit
609 Solvers
Count decimal digits of a number
177 Solvers
Deleting an element in a matrix
325 Solvers
323 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!