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))
|
2 | Pass |
%%
s1 = '''';
s2_correct = '''''';
assert(isequal(quote_doubler(s1),s2_correct))
|
10752 Solvers
Create a cell array out of a struct
189 Solvers
Remove the two elements next to NaN value
309 Solvers
Test if two numbers have the same digits
154 Solvers
Check that number is whole number
274 Solvers