This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 'a';
y = 'b';
y_correct = 'ab';
assert(isequal(your_fcn_name(x, y),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 your_fcn_name (line 2)
In ScoringEngineTestPoint1 (line 4)
In solutionTest (line 3)]
|
2 | Pass |
x = 'a';
y = 'a';
y_correct = 'ab';
assert(~isequal(your_fcn_name(x, y),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 your_fcn_name (line 2)
In ScoringEngineTestPoint2 (line 4)
In solutionTest (line 5)]
|
Find the sum of the elements in the "second" diagonal
879 Solvers
middleAsColumn: Return all but first and last element as a column vector
314 Solvers
185 Solvers
Find the index of the largest value in any vector X=[4,3,4,5,9,12,0,4.....5]
230 Solvers
Find the dimensions of a matrix
267 Solvers