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))
|
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))
|
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))
|
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))
|
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))
|
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))
|
7 | Pass |
x = 'Either one is fine. Why? Because he said so.';
y = {'Either one is fine.'};
assert(isequal(lazy(x),y))
|
Find the largest value in the 3D matrix
899 Solvers
MATCH THE STRINGS (2 CHAR) very easy
194 Solvers
193 Solvers
325 Solvers
265 Solvers