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))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In clean_list (line 2)
In ScoringEngineTestPoint1 (line 3)
In solutionTest (line 3)]
|
2 | Pass |
names_in = {'bert','bill','billy','Bill'};
names_out = {'bert','bill','billy'};
assert(isequal(clean_list(names_in),names_out))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In clean_list (line 2)
In ScoringEngineTestPoint2 (line 3)
In solutionTest (line 5)]
|
3 | Pass |
names_in = {'George','Bernard','Shaw','shaw','Bernie','george'};
names_out = {'George','Bernard','Shaw','Bernie'};
assert(isequal(clean_list(names_in),names_out))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In clean_list (line 2)
In ScoringEngineTestPoint3 (line 3)
In solutionTest (line 7)]
|
4 | Pass |
names_in = {'aaa','aAa','aAA','bbB','bbb','ccc'};
names_out = {'aaa','bbB','ccc'};
assert(isequal(clean_list(names_in),names_out))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In clean_list (line 2)
In ScoringEngineTestPoint4 (line 3)
In solutionTest (line 9)]
|
5 | Pass |
names_in = {'one','two','three'};
names_out = {'one','two','three'};
assert(isequal(clean_list(names_in),names_out))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In clean_list (line 2)
In ScoringEngineTestPoint5 (line 3)
In solutionTest (line 11)]
|
272 Solvers
185 Solvers
Back to basics 12 - Input Arguments
525 Solvers
Find the largest value in the 3D matrix
1056 Solvers
Arrange vector in ascending order
624 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!