Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 'abcde';
y_correct = 'ae';
assert(isequal(stringfirstandlast(x),y_correct))
|
2 | Pass |
x = 'a';
y_correct = 'aa';
assert(isequal(stringfirstandlast(x),y_correct))
|
3 | Pass |
x = 'codyrocks!';
y_correct = 'c!';
assert(isequal(stringfirstandlast(x),y_correct))
|
Return a list sorted by number of occurrences
1225 Solvers
552 Solvers
Remove the small words from a list of words.
474 Solvers
Who has power to do everything in this world?
256 Solvers
Convert given decimal number to binary number.
161 Solvers