1
0
Fork 0
mirror of https://gitlab.com/mfocko/CodeWars.git synced 2024-09-19 14:16:55 +02:00
CodeWars/8kyu/is_it_a_palindrome/solution.cpp
Matej Focko fc899b0b02
chore: initial commit
Signed-off-by: Matej Focko <mfocko@redhat.com>
2021-12-28 16:19:58 +01:00

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