Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x={'01', '56'; '234', '789'};
y_correct = '0123456789';
assert(isequal(your_fcn_name(x),y_correct));
y =
'0123456789'
|
2 | Pass |
x={'' 'a' '1'; 'AA' 'BB' 'CC'; 'dog' 'cat' 'car'};
y_correct='AAdogaBBcat1CCcar';
assert(isequal(your_fcn_name(x),y_correct));
y =
'AAdogaBBcat1CCcar'
|
3 | Pass |
x={'We' 'do' ;'ll ' 'ne.'};
y_correct='Well done.';
assert(isequal(your_fcn_name(x),y_correct));
y =
'Well done.'
|
747 Solvers
Similar Triangles - find the height of the tree
156 Solvers
701 Solvers
262 Solvers
Side of an equilateral triangle
1524 Solvers