This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
It works in base 13.
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 | Pass |
x = 42;
y_correct = 'the answer to life the universe and everything';
assert(isequal(the_answer(x),y_correct))
|
1313 Solvers
Generate a vector like 1,2,2,3,3,3,4,4,4,4
1566 Solvers
324 Solvers
Matrix rotation as per given angle
76 Solvers
Find the dimensions of a matrix
268 Solvers