Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
A = {[] [] [] [1] []};
B = {'A','B','C','D','E'};
y_correct = 'D';
assert(isequal(Mapp_It(A,B),y_correct))
|
2 | Pass |
A = {[] [] [] [1]; [] [1] [] []};
B = {'A','B','C','D'};
y_correct = {'D';'B'};
assert(isequal(Mapp_It(A,B),y_correct))
|
3 | Pass |
A = {[] [] [1]; [] [1] []; [1] [] []};
B = {'A','B','C'};
y_correct = {'C';'B';'A'};
assert(isequal(Mapp_It(A,B),y_correct))
|
3117 Solvers
Remove the small words from a list of words.
672 Solvers
434 Solvers
Calculate the Number of Sign Changes in a Row Vector (No Element Is Zero)
226 Solvers
445 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!