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))
|
Convert from Base 10 to base 5
203 Solvers
Calculate the area of a triangle between three points
871 Solvers
Rotate input square matrix 90 degrees CCW without rot90
380 Solvers
856 Solvers
find the surface area of a cube
336 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!