It's a Sign WORKS WRONG?
my code sample using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SoloLearn { class Program { static void Main(string[] args) { string[] input = Console.ReadLine().Split(" "); foreach (string s in input) { if(IsPolinom(s)) { Console.WriteLine("Open"); return; } } Console.WriteLine("Trash"); } static bool IsPolinom(string s) { char[] arr = s.ToCharArray(); Array.Reverse(arr); return new string(arr)==s; } } } Why it can't pass all tests?