Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = 31;
y_correct = 31;
assert(isequal(unique_prime_factors(x),y_correct))
ans =
31
|
2 | Pass |
%%
x = 37;
y_correct = 37;
assert(isequal(unique_prime_factors(x),y_correct))
ans =
37
|
3 | Pass |
%%
x = 39;
y_correct = [13 3];
assert(isequal(unique_prime_factors(x),y_correct))
ans =
13 3
|
4 | Pass |
%%
x = 876;
y_correct = [73 3 2];
assert(isequal(unique_prime_factors(x),y_correct))
ans =
73 3 2
|
4598 Solvers
Create a cell array out of a struct
508 Solvers
Project Euler: Problem 7, Nth prime
521 Solvers
Back to basics 23 - Triangular matrix
634 Solvers
367 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!