Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
s = '508-647-7000, (508) 647-7001, 617-555-1212, 1-800-323-1234, 704 555-1212';
a = {'508','617','704','800'};
assert(isequal(refcn(s),a))
b =
1×5 cell array
{1×1 cell} {1×1 cell} {1×1 cell} {1×1 cell} {1×1 cell}
b =
1×5 cell array
{'508'} {1×1 cell} {1×1 cell} {1×1 cell} {1×1 cell}
b =
1×5 cell array
{'508'} {'508'} {1×1 cell} {1×1 cell} {1×1 cell}
b =
1×5 cell array
{'508'} {'508'} {'617'} {1×1 cell} {1×1 cell}
b =
1×5 cell array
{'508'} {'508'} {'617'} {'800'} {1×1 cell}
b =
1×5 cell array
{'508'} {'508'} {'617'} {'800'} {'704'}
ans =
1×4 cell array
{'508'} {'617'} {'704'} {'800'}
|
2 | Pass |
s = '212-657-0260; (888) 647-7001; 336 565-1212; +1-800-323-1234';
a = {'212','336','800','888'};
assert(isequal(refcn(s),a))
b =
1×4 cell array
{1×1 cell} {1×1 cell} {1×1 cell} {1×1 cell}
b =
1×4 cell array
{'212'} {1×1 cell} {1×1 cell} {1×1 cell}
b =
1×4 cell array
{'212'} {'888'} {1×1 cell} {1×1 cell}
b =
1×4 cell array
{'212'} {'888'} {'336'} {1×1 cell}
b =
1×4 cell array
{'212'} {'888'} {'336'} {'800'}
ans =
1×4 cell array
{'212'} {'336'} {'800'} {'888'}
|
Return the 3n+1 sequence for n
6167 Solvers
1051 Solvers
394 Solvers
Who is the smartest MATLAB programmer?
561 Solvers
Area of an equilateral triangle
2759 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!