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 |
x = [1 10 13 50 26];
y_correct = 13;
assert(isequal(greatest_gcm(x),y_correct))
|
2 | Pass |
x = [1 1 1 2 5];
y_correct = 1;
assert(isequal(greatest_gcm(x),y_correct))
|
3 | Pass |
x =[25 50 1 5 1 2 4 5];
y_correct = 25;
assert(isequal(greatest_gcm(x),y_correct))
|
Similar Triangles - find the height of the tree
203 Solvers
573 Solvers
Relative ratio of "1" in binary number
392 Solvers
Find out total non zero element of matrix
193 Solvers
Check that number is whole number
1070 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!