This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
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))
|
173 Solvers
Remove white space from the string
143 Solvers
135 Solvers
392 Solvers
196 Solvers