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))
y =
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))
y =
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))
y =
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))
y =
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))
y =
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))
y =
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))
y =
1×1 cell array
{'Either one is fine.'}
|
1163 Solvers
Read a column of numbers and interpolate missing data
1235 Solvers
Project Euler: Problem 7, Nth prime
521 Solvers
Return elements unique to either input
550 Solvers
149 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!