Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 0;
y_correct = 0;
assert(isequal(logic(x),y_correct))
|
2 | Pass |
x = 1;
y_correct = 1;
assert(isequal(logic(x),y_correct))
|
3 | Pass |
x = 2;
y_correct = 8;
assert(isequal(logic(x),y_correct))
|
4 | Pass |
x = 3;
y_correct = 39;
assert(isequal(logic(x),y_correct))
|
5 | Pass |
x = 7;
y_correct = 7651;
assert(isequal(logic(x),y_correct))
|
6 | Pass |
x = 12;
y_correct = 3188640;
assert(isequal(logic(x),y_correct))
|
22989 Solvers
Given two strings, find the maximum overlap
300 Solvers
747 Solvers
Create One Large Eye of size N x N Quickly?
70 Solvers
Find the elements of a matrix according to a defined property.
57 Solvers