Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 'I played piano. John played football. Anita went home. Are you safe?';
y = {'I played piano.' 'Anita went home.' 'Are you safe?'};
assert(isequal(lazy(x),y))
ans =
1×3 cell array
{'I played piano.'} {'Anita went home.'} {'Are you safe?'}
|
2 | Pass |
x = 'Are you okay? Who are you? Olga will call you. Sam saw me.';
y = {'Olga will call you.'};
assert(isequal(lazy(x),y))
ans =
1×1 cell array
{'Olga will call you.'}
|
3 | Pass |
x = 'One is more. Than what? No it''s not. But why? Angela said so.';
y = {'One is more.' 'Angela said so.'};
assert(isequal(lazy(x),y))
ans =
1×2 cell array
{'One is more.'} {'Angela said so.'}
|
4 | Pass |
x = 'One plus two. Is four. No, that''t not right. It''s three.';
y = {'One plus two.' 'It''s three.'};
assert(isequal(lazy(x),y))
ans =
1×2 cell array
{'One plus two.'} {'It's three.'}
|
5 | Pass |
x = 'I went home. After the game. It was sad. It was lame. It was great!';
y = {'I went home.' 'After the game.' 'It was lame.'};
assert(isequal(lazy(x),y))
ans =
1×3 cell array
{'I went home.'} {'After the game.'} {'It was lame.'}
|
6 | Pass |
x = 'One, two, three. Climb the tree. Four, five, six. It''s not here. Eight and nine. That''s fine.';
y = {'One, two, three.' 'It''s not here.' 'Eight and nine.'};
assert(isequal(lazy(x),y))
ans =
1×3 cell array
{'One, two, three.'} {'It's not here.'} {'Eight and nine.'}
|
7 | Pass |
x = 'Either one is fine. Why? Because he said so.';
y = {'Either one is fine.'};
assert(isequal(lazy(x),y))
ans =
1×1 cell array
{'Either one is fine.'}
|
6719 Solvers
Sum all integers from 1 to 2^n
8414 Solvers
Return unique values without sorting
588 Solvers
Determine the number of odd integers in a vector
435 Solvers
489 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!