Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
a='harsa';
b='harish';
y_correct = 1;
assert(isequal(match(a,b),y_correct))
|
2 | Pass |
%%
a='harsa';
b='hema';
y_correct = 0;
assert(isequal(match(a,b),y_correct))
|
3 | Pass |
%%
a='sunitha';
b='surya';
y_correct = 1;
assert(isequal(match(a,b),y_correct))
|
274 Solvers
Determine the number of odd integers in a vector
435 Solvers
424 Solvers
Find out total non zero element of matrix
193 Solvers
445 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!