First page Back Continue Last page Graphics
PALINDROME, the easy way1
bool is_palindrome(const string& s) { return equal(s.begin(), s.end(), s.rbegin() ); }
YOU MAY NOT USE THIS FOR YOUR LAB!
Do it another way and use this version to double check your results.