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 |
d = datenum('01-Jan-2011 02:02:02',0);
tf = true;
assert(isequal(isPalindrome(d),tf))
|
2 | Pass |
d = datenum('02/01/12',2);
tf = true;
assert(isequal(isPalindrome(d),tf))
|
3 | Pass |
d = datenum('12-Nov-1943',1);
tf = false;
assert(isequal(isPalindrome(d),tf))
|
4 | Pass |
d = datenum('10/10/01',2);
tf = false;
assert(isequal(isPalindrome(d),tf))
|
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!