Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
a='harsa';
b='harish';
y_correct = 1;
assert(isequal(match(a,b),y_correct))
ans =
1
|
2 | Pass |
%%
a='harsa';
b='hema';
y_correct = 0;
assert(isequal(match(a,b),y_correct))
ans =
0
|
3 | Pass |
%%
a='sunitha';
b='surya';
y_correct = 1;
assert(isequal(match(a,b),y_correct))
ans =
1
|
Determine whether a vector is monotonically increasing
11922 Solvers
Find all elements less than 0 or greater than 10 and replace them with NaN
13051 Solvers
3892 Solvers
Get the area codes from a list of phone numbers
532 Solvers
Returning a "greater than" vector
188 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!