This solution is outdated. To rescore this solution, sign in.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = 1;
y_correct = 1;
assert(isequal(reverse(x),y_correct))
|
2 | Pass |
%%
x = -10:1;
y_correct = 1:-1:-10;
assert(isequal(reverse(x),y_correct))
|
3 | Pass |
%%
x = 'able was i ere i saw elba';
y_correct = 'able was i ere i saw elba';
assert(isequal(reverse(x),y_correct))
|
Remove the polynomials that have positive real elements of their roots.
447 Solvers
Find the sum of the elements in the "second" diagonal
879 Solvers
Flag largest magnitude swings as they occur
524 Solvers
Fahrenheit to Celsius converter
262 Solvers
372 Solvers