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))
|
2 | Pass |
%%
x = {'this', 'one', '', 'has', ' ', 'some tricky', 'stuff'};
y_correct = 'this one has some tricky stuff';
assert(isequal(cellstr_joiner(x, ' '),y_correct))
|
3 | Pass |
%%
x = {'delimiters', 'are', 'not', 'always', 'spaces'};
y_correct = 'delimiters?are?not?always?spaces';
assert(isequal(cellstr_joiner(x, '?'),y_correct))
|
Read a column of numbers and interpolate missing data
1235 Solvers
Given an unsigned integer x, find the largest y by rearranging the bits in x
780 Solvers
First non-zero element in each column
593 Solvers
Get the elements of diagonal and antidiagonal for any m-by-n matrix
268 Solvers
404 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!