mirror of
https://gitlab.com/mfocko/CodeWars.git
synced 2024-11-09 19:19:07 +01:00
23 lines
360 B
C++
23 lines
360 B
C++
|
#include <cctype>
|
||
|
#include <string>
|
||
|
|
||
|
bool isPalindrom (const std::string& str)
|
||
|
{
|
||
|
if (str.size() == 0) return true;
|
||
|
|
||
|
auto i = 0;
|
||
|
auto j = str.size() - 1;
|
||
|
|
||
|
std::cout << str << std::endl;
|
||
|
|
||
|
while (i < j)
|
||
|
{
|
||
|
if (std::tolower(str[i++]) != std::tolower(str[j--]))
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return true;
|
||
|
}
|