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 |
a = [45 15 200 300];
arraygcdok=5;
assert(isequal(arraygcd(a),arraygcdok))
|
2 | Pass |
a = [140 7 14 35 42];
arraygcdok=7;
assert(isequal(arraygcd(a),arraygcdok))
|
3 | Pass |
a = [100 90 70 2000];
arraygcdok=10;
assert(isequal(arraygcd(a),arraygcdok))
|
1102 Solvers
Back to basics 9 - Indexed References
347 Solvers
Multiples of a Number in a Given Range
140 Solvers
477 Solvers
Area of an equilateral triangle
1703 Solvers