This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 1;
y_correct = 42;
assert(isequal(the_answer(x),y_correct))
|
2 | Pass |
x = 0;
y_correct = 42;
assert(isequal(the_answer(x),y_correct))
|
3 | Pass |
x = -42;
y_correct = 42;
assert(isequal(the_answer(x),y_correct))
|
4 | Fail |
x = 42;
y_correct = 'the answer to life the universe and everything';
assert(isequal(the_answer(x),y_correct))
|
2234 Solvers
Arrange vector in ascending order
541 Solvers
Set some matrix elements to zero
228 Solvers
66 Solvers
93 Solvers