Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
A = {'MATLAB','HURRAY','SPARKLY','KITTENS','FUN'};
B = 'KITTENS';
C = {'MATLAB','HURRAY','SPARKLY','FUN','KITTENS'};
assert(isequal(puzzler(A,B),C))
x =
1×5 logical array
0 0 0 1 0
ans =
1×5 cell array
{'MATLAB'} {'HURRAY'} {'SPARKLY'} {'FUN'} {'KITTENS'}
|
2 | Pass |
A = {'HELP!','I''VE','FALLEN','ON THE','CAPS LOCK','KEY'};
B = 'stop shouting';
C = {'HELP!','I''VE','FALLEN','ON THE','CAPS LOCK','KEY'};
assert(isequal(puzzler(A,B),C))
x =
1×6 logical array
0 0 0 0 0 0
ans =
1×6 cell array
{'HELP!'} {'I'VE'} {'FALLEN'} {'ON THE'} {'CAPS LOCK'} {'KEY'}
|
3 | Pass |
A = {'When','in the','human events','course','of'};
B = 'human events';
C = {'When','in the','course','of','human events'};
assert(isequal(puzzler(A,B),C))
x =
1×5 logical array
0 0 1 0 0
ans =
1×5 cell array
{'When'} {'in the'} {'course'} {'of'} {'human events'}
|
4 | Pass |
A = {'Soulwise','these','times','are','trying'};
B = 'times';
C = {'Soulwise','these','are','trying','times'};
assert(isequal(puzzler(A,B),C))
x =
1×5 logical array
0 0 1 0 0
ans =
1×5 cell array
{'Soulwise'} {'these'} {'are'} {'trying'} {'times'}
|
Return the 3n+1 sequence for n
6170 Solvers
Omit columns averages from a matrix
527 Solvers
Compute a dot product of two vectors x and y
750 Solvers
530 Solvers
234 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!