Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
d_in = '22-Oct-2014';
m_correct = 6;
m_test = monthsUntilMatch(d_in);
assert(isequal(m_test,m_correct))
ans =
6
|
2 | Pass |
%%
d_in = '2-Jul-2014';
m_correct = 14;
m_test = monthsUntilMatch(d_in);
assert(isequal(m_test,m_correct))
ans =
14
|
3 | Pass |
%%
d_in = '12-May-2011';
m_correct = 8;
m_test = monthsUntilMatch(d_in);
assert(isequal(m_test,m_correct))
ans =
8
|
4 | Pass |
%%
d_in = '14-Jul-1789';
m_correct = 14;
m_test = monthsUntilMatch(d_in)
assert(isequal(m_test,m_correct))
ans =
14
m_test =
14
|
5 | Pass |
%%
d_in = '31-Dec-1999';
m_correct = 3;
m_test = monthsUntilMatch(d_in)
assert(isequal(m_test,m_correct))
ans =
3
m_test =
3
|
Replace NaNs with the number that appears to its left in the row.
1710 Solvers
Make one big string out of two smaller strings
1070 Solvers
261 Solvers
309 Solvers
289 Solvers