Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 31;
y_correct = 31;
assert(isequal(primeFactors(x),y_correct))
y =
31
|
2 | Pass |
x = 37;
y_correct = 37;
assert(isequal(primeFactors(x),y_correct))
y =
37
|
3 | Pass |
x = 39;
y_correct = [13 3];
assert(isequal(primeFactors(x),y_correct))
y =
13 3
|
4 | Pass |
x = 876;
y_correct = [73 3 2 2];
assert(isequal(primeFactors(x),y_correct))
y =
73 3 2 2
|
Return the 3n+1 sequence for n
6167 Solvers
480 Solvers
326 Solvers
708 Solvers
Find the sides of an isosceles triangle when given its area and height from its base to apex
449 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!