Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 31;
y_correct = 31;
assert(isequal(unique_prime_factors(x),y_correct))
y =
31
|
2 | Pass |
x = 37;
y_correct = 37;
assert(isequal(unique_prime_factors(x),y_correct))
y =
37
|
3 | Pass |
x = 39;
y_correct = [13 3];
assert(isequal(unique_prime_factors(x),y_correct))
y =
13 3
|
4 | Pass |
x = 876;
y_correct = [73 3 2];
assert(isequal(unique_prime_factors(x),y_correct))
y =
73 3 2
|
650 Solvers
Given two strings, find the maximum overlap
300 Solvers
Back to basics 11 - Max Integer
611 Solvers
The Answer to Life, the Universe, and Everything
312 Solvers
136 Solvers