Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = 'I have been using MATLAB for 50 years!';
y_correct = 'Me!';
assert(isequal(smartest(x),y_correct))
ans =
Me!
|
2 | Pass |
%%
x = 'I developed MATLAB!';
y_correct = 'Me!';
assert(isequal(smartest(x),y_correct))
ans =
Me!
|
3 | Pass |
%%
x = '';
y_correct = 'Me!';
assert(isequal(smartest(x),y_correct))
ans =
Me!
|
4 | Pass |
%%
x = 1;
y_correct = 'Me!';
assert(isequal(smartest(x),y_correct))
ans =
Me!
|
1313 Solvers
Back to basics 9 - Indexed References
348 Solvers
Return the first and last character of a string
1665 Solvers
Sum the 'edge' values of a matrix
154 Solvers
Solving Quadratic Equations (Version 1)
361 Solvers