Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = '950 Blue Hill Ave.Dorchester, MA 2124';
y = string('950 Blue Hill Ave.Dorchester, MA 02124');
assert (all(y == myFun(x)));
ans =
'950 Blue Hill Ave.Dorchester, MA 02124'
|
2 | Pass |
x = '259 Allandale Rd.Jamaica Plain, MA 2467';
y = string('259 Allandale Rd.Jamaica Plain, MA 02467');
assert (all(y == myFun(x)));
ans =
'259 Allandale Rd.Jamaica Plain, MA 02467'
|
3 | Pass |
x = '850 Harrison Ave.Boston, MA 2118';
y = string('850 Harrison Ave.Boston, MA 02118');
assert (all(y == myFun(x)));
ans =
'850 Harrison Ave.Boston, MA 02118'
|
4 | Pass |
x = '23-29 Tucker St.Dorchester, MA 2124';
y = string('23-29 Tucker St.Dorchester, MA 02124');
assert (all(y == myFun(x)));
ans =
'23-29 Tucker St.Dorchester, MA 02124'
|
874 Solvers
Omit columns averages from a matrix
527 Solvers
351 Solvers
Get the elements of diagonal and antidiagonal for any m-by-n matrix
267 Solvers
264 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!