Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = 31;
y_correct = 31;
assert(isequal(unique_prime_factors(x),y_correct))
y =
31
y =
31
y =
31
|
2 | Pass |
%%
x = 37;
y_correct = 37;
assert(isequal(unique_prime_factors(x),y_correct))
y =
37
y =
37
y =
37
|
3 | Pass |
%%
x = 39;
y_correct = [13 3];
assert(isequal(unique_prime_factors(x),y_correct))
y =
3 13
y =
3 13
y =
13 3
|
4 | Pass |
%%
x = 876;
y_correct = [73 3 2];
assert(isequal(unique_prime_factors(x),y_correct))
y =
2 2 3 73
y =
2 3 73
y =
73 3 2
|
3239 Solvers
3115 Solvers
Right Triangle Side Lengths (Inspired by Project Euler Problem 39)
512 Solvers
360 Solvers
Matlab Basics II - Count rows in a matrix
255 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!