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))
s2 =
He said ''Look over there!''
|
2 | Pass |
%%
s1 = '''';
s2_correct = '''''';
assert(isequal(quote_doubler(s1),s2_correct))
s2 =
''
|
Least common multiple of many numbers
189 Solvers
Find a subset that divides the vector into equal halves
332 Solvers
219 Solvers
Area of an equilateral triangle
2763 Solvers
Convert given decimal number to binary number.
638 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!