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 =
''
|
746 Solvers
Find the peak 3n+1 sequence value
790 Solvers
1878 Solvers
Make one big string out of two smaller strings
1070 Solvers
631 Solvers