Fading Coder

One Final Commit for the Last Sprint

Palindrome Date Calculation

Palindrome Date Calculation The code below checks for palindrome dates between two given date strings. #include<iostream> #include<cstring> #include<sstream> using namespace std; string data1; string data2; int cnt; int y1,m1,d1; int y2,m2,d2; int day[] = {31,28,31,30,31,30,31,31,3...