1
1
mirror of https://github.com/theoludwig/programming-challenges.git synced 2024-07-18 02:20:12 +02:00
programming-challenges/challenges/is-palindrome/solutions/cs/function/Solution.cs

27 lines
574 B
C#

using System;
namespace Solution
{
class Program
{
static void Main()
{
string line = Console.ReadLine();
line = line.ToLower().Replace(" ", "");
string reverse = "";
for (int index = line.Length - 1; index >= 0; index--)
{
reverse += line[index];
}
if (line == reverse)
{
Console.WriteLine("true");
}
else
{
Console.WriteLine("false");
}
}
}
}