1
0
Fork 0
mirror of https://gitlab.com/mfocko/CodeWars.git synced 2024-09-19 22:16:57 +02:00
CodeWars/8kyu/is_it_a_palindrome/solution.cpp

23 lines
360 B
C++
Raw Normal View History

#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;
}