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))
|
2 | Pass |
x = 'I developed MATLAB!';
y_correct = 'Me!';
assert(isequal(smartest(x),y_correct))
|
3 | Pass |
x = '';
y_correct = 'Me!';
assert(isequal(smartest(x),y_correct))
|
4 | Pass |
x = 1;
y_correct = 'Me!';
assert(isequal(smartest(x),y_correct))
|
Find all elements less than 0 or greater than 10 and replace them with NaN
13048 Solvers
Getting the row and column location from a matrix
236 Solvers
Vectorize the digits of an Integer
269 Solvers
Find nearest prime number less than input number
268 Solvers
Reverse the elements of an array
687 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!