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))
s =
He said ''Look over there!''
|
2 | Pass |
%%
s1 = '''';
s2_correct = '''''';
assert(isequal(quote_doubler(s1),s2_correct))
s =
''
|
6063 Solvers
Project Euler: Problem 2, Sum of even Fibonacci
835 Solvers
middleAsColumn: Return all but first and last element as a column vector
387 Solvers
Make a random, non-repeating vector.
2795 Solvers
We love vectorized solutions. Problem 1 : remove the row average.
546 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!