Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
names_in = {'bert','arthur','Bert','Fred'};
names_out = {'bert','arthur','Fred'};
assert(isequal(clean_list(names_in),names_out))
b =
1×3 cell array
{'bert'} {'arthur'} {'Fred'}
|
2 | Pass |
names_in = {'bert','bill','billy','Bill'};
names_out = {'bert','bill','billy'};
assert(isequal(clean_list(names_in),names_out))
b =
1×3 cell array
{'bert'} {'bill'} {'billy'}
|
3 | Pass |
names_in = {'George','Bernard','Shaw','shaw','Bernie','george'};
names_out = {'George','Bernard','Shaw','Bernie'};
assert(isequal(clean_list(names_in),names_out))
b =
1×4 cell array
{'George'} {'Bernard'} {'Shaw'} {'Bernie'}
|
4 | Pass |
names_in = {'aaa','aAa','aAA','bbB','bbb','ccc'};
names_out = {'aaa','bbB','ccc'};
assert(isequal(clean_list(names_in),names_out))
b =
1×3 cell array
{'aaa'} {'bbB'} {'ccc'}
|
5 | Pass |
names_in = {'one','two','three'};
names_out = {'one','two','three'};
assert(isequal(clean_list(names_in),names_out))
b =
1×3 cell array
{'one'} {'two'} {'three'}
|
6717 Solvers
584 Solvers
Make an awesome ramp for a tiny motorcycle stuntman
334 Solvers
Compute a dot product of two vectors x and y
750 Solvers
262 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!