Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
x = 0;
y_correct = 0;
assert(isequal(logic(x),y_correct))
y =
1
|
2 | Pass |
x = 1;
y_correct = 1;
assert(isequal(logic(x),y_correct))
y =
1
|
3 | Fail |
x = 2;
y_correct = 8;
assert(isequal(logic(x),y_correct))
y =
2
|
4 | Fail |
x = 3;
y_correct = 39;
assert(isequal(logic(x),y_correct))
y =
6
|
5 | Fail |
x = 7;
y_correct = 7651;
assert(isequal(logic(x),y_correct))
y =
5040
|
6 | Fail |
x = 12;
y_correct = 3188640;
assert(isequal(logic(x),y_correct))
y =
479001600
|
558 Solvers
Project Euler: Problem 8, Find largest product in a large string of numbers
196 Solvers
28 Solvers
Justify the character string in center with proportional fonts
46 Solvers
Find files with extension ext in the current directory
28 Solvers