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!
|
Find the numeric mean of the prime numbers in a matrix.
5905 Solvers
Remove the small words from a list of words.
474 Solvers
Generate a random matrix A of (1,-1)
161 Solvers
579 Solvers
255 Solvers