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 |
%%
inStr = 'Cedric loves regular expressions' ;
output_correct = {'Cedric', 'regular'} ;
assert(isequal(getWordsSameStartEnd(inStr),output_correct))
ans =
'Cedric' 'regular'
|
2 | Pass |
%%
inStr = 'Single neuron Cedric, Anna-Maria, Andrei, a koala' ;
output_correct = {'neuron', 'Cedric', 'Anna-Maria'} ;
assert(isequal(getWordsSameStartEnd(inStr),output_correct))
ans =
'neuron' 'Cedric' 'Anna-Maria'
|
3 | Pass |
%%
inStr = '__dEdiCaTeD__, REGULAR_EXPRESSION.. Rotor-1 and abracadabra' ;
output_correct = { 'dEdiCaTeD', 'REGULAR', 'abracadabra'} ;
assert(isequal(getWordsSameStartEnd(inStr),output_correct))
ans =
'dEdiCaTeD' 'REGULAR' 'abracadabra'
|
1935 Solvers
1513 Solvers
First non-zero element in each column
463 Solvers
451 Solvers
Remove white space from the string
143 Solvers