Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 'abcde';
y_correct = 'ae';
assert(isequal(stringfirstandlast(x),y_correct))
ans =
'ae'
|
2 | Pass |
x = 'a';
y_correct = 'aa';
assert(isequal(stringfirstandlast(x),y_correct))
ans =
'aa'
|
3 | Pass |
x = 'codyrocks!';
y_correct = 'c!';
assert(isequal(stringfirstandlast(x),y_correct))
ans =
'c!'
|
Find the maximum number of decimal places in a set of numbers
157 Solvers
MATCH THE STRINGS (2 CHAR) very easy
194 Solvers
ベクトル [1 2 3 4 5 6 7 8 9 10] の作成
198 Solvers
find the surface area of a cube
215 Solvers
91 Solvers