This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
first='a';
last='f';
assert(isequal(get_char_list(first,last),'abcdef'))
ans =
abcdef
|
2 | Pass |
first='x';
last='t';
assert(isequal(get_char_list(first,last),'xwvut'))
ans =
xwvut
|
3 | Pass |
first='p';
last='p';
assert(isequal(get_char_list(first,last),'p'))
ans =
p
|
154 Solvers
170 Solvers
Let's see how peculiar we can get
129 Solvers
find a specific element from an matrix
58 Solvers
Determine point is located in a circle or not
47 Solvers