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))
ans =
[]
|
2 | Pass |
A = {[] [] [] [1]; [] [1] [] []};
B = {'A','B','C','D'};
y_correct = {'D';'B'};
assert(isequal(Mapp_It(A,B),y_correct))
ans =
[]
|
3 | Pass |
A = {[] [] [1]; [] [1] []; [1] [] []};
B = {'A','B','C'};
y_correct = {'C';'B';'A'};
assert(isequal(Mapp_It(A,B),y_correct))
ans =
[]
|
Get the area codes from a list of phone numbers
532 Solvers
Number of 1s in a binary string
2827 Solvers
149 Solvers
364 Solvers
1161 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!