Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
s1 = 'He said ''Look over there!''';
s2_correct = 'He said ''''Look over there!''''';
assert(isequal(quote_doubler(s1),s2_correct))
ans =
He said ''Look over there!''
|
2 | Pass |
%%
s1 = '''';
s2_correct = '''''';
assert(isequal(quote_doubler(s1),s2_correct))
ans =
''
|
Read a column of numbers and interpolate missing data
1235 Solvers
386 Solvers
Back to basics 9 - Indexed References
392 Solvers
401 Solvers
5002 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!