Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 1;
y_correct = 1;
assert(isequal(unique_prime_factors(x),y_correct))
|
2 | Pass |
x = 137;
y_correct = 137;
assert(isequal(unique_prime_factors(x),y_correct))
|
3 | Pass |
x = 876;
y_correct = [73 3 2];
assert(isequal(unique_prime_factors(x),y_correct))
|
Make one big string out of two smaller strings
1148 Solvers
Back to basics 23 - Triangular matrix
634 Solvers
390 Solvers
Create an index-powered vector
352 Solvers
Integer Sequence - II : New Fibonacci
252 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!