Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = {'hello', 'basic', 'test', 'case'};
y_correct = 'hello basic test case';
assert(isequal(cellstr_joiner(x, ' '),y_correct))
[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 cellstr_joiner (line 2)
In ScoringEngineTestPoint1 (line 3)
In solutionTest (line 3)]
|
2 | Pass |
x = {'this', 'one', '', 'has', ' ', 'some tricky', 'stuff'};
y_correct = 'this one has some tricky stuff';
assert(isequal(cellstr_joiner(x, ' '),y_correct))
[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 cellstr_joiner (line 2)
In ScoringEngineTestPoint2 (line 3)
In solutionTest (line 5)]
|
3 | Pass |
x = {'delimiters', 'are', 'not', 'always', 'spaces'};
y_correct = 'delimiters?are?not?always?spaces';
assert(isequal(cellstr_joiner(x, '?'),y_correct))
[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 cellstr_joiner (line 2)
In ScoringEngineTestPoint3 (line 3)
In solutionTest (line 7)]
|
798 Solvers
Replace multiples of 5 with NaN
282 Solvers
1325 Solvers
Check that number is whole number
274 Solvers
Matlab Basics - y as a function of x
242 Solvers