mirror of
https://github.com/ttroy50/cmake-examples.git
synced 2025-12-18 20:24:35 +03:00
12 lines
202 B
C++
12 lines
202 B
C++
#include "Palindrome.h"
|
|
|
|
bool Palindrome::isPalindrome(const std::string& toCheck)
|
|
{
|
|
|
|
if (toCheck == std::string(toCheck.rbegin(), toCheck.rend())) {
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|