Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
a = 1;
N = 100
y_correct = 1;
assert(isequal(rootN(a,N),y_correct))
N =
100
a =
1
|
2 | Pass |
a = [1 64 216];
N = 3
y_correct = [1 4 6];
assert(isequal(rootN(a,N),y_correct))
N =
3
a =
1 4 6
|
3 | Pass |
a = 1/100;
N = 2
y_correct = 1/10;
assert(isequal(rootN(a,N),y_correct))
N =
2
|
4 | Pass |
a = 826^10;
N = 10
y_correct = 826;
assert(isequal(rootN(a,N),y_correct))
N =
10
a =
826
|
Number of 1s in a binary string
1228 Solvers
Getting the indices from a vector
1445 Solvers
Check if number exists in vector
2313 Solvers
Create a Multiplication table matrix...
226 Solvers
264 Solvers