WifiAvivi
151 Точки
EmanuilNikolov
33 Точки
using System;
using System.Collections.Generic;
using System.Linq;
namespace Lab
{
class Program
{
static void Main(string[] args)
{
Palindrom();
}
public static void Palindrom()
{
List<string> words = Console.ReadLine().Split(new char[] { ' ' , ',' , '.' , '?', '!' }, StringSplitOptions.RemoveEmptyEntries).ToList();
//ToDo!
var newStr = "";
List<string> print = new List<string>();
//
foreach (var word in words)
{
for (int i = word.Length-1; i >= 0; i--)
{
newStr += word[i];
}
if (newStr == word)
{
print.Add(word);
newStr = "";
}
newStr = "";
}
print.Sort();
Console.WriteLine(string.Join(", ", print));
}
private static void Text_Filter()
{
List<string> words = Console.ReadLine().Split(new char[] { ' ', ',' }, StringSplitOptions.RemoveEmptyEntries).ToList();
string text = Console.ReadLine();
//
foreach (var word in words)
{
if (text.Contains(word))
{
text = text.Replace(word, new string('*', word.Length));
}
}
Console.WriteLine(text);
}
private static void Count_Substring()
{
string txt = Console.ReadLine().ToLower();
string word = Console.ReadLine().ToLower();
//
int index = txt.IndexOf(word);
var count = 0;
while (index != -1)
{
count++;
index = txt.IndexOf(word, index + 1);
}
Console.WriteLine(count);
}
private static void Reverse_String()
{
//Reverse string
string str = Console.ReadLine();
string str1 = "";
for (int i = str.Length - 1; i >= 0; i--)
{
str1 += str[i];
}
Console.WriteLine(str1);
}
}
}
И аз го докарах до 80 т., но един тест не минава. Мисля, че логиката е вярна. Разглеждайки коментарите се сетих вместо Sort() да използвам OrderBy i Distinct и така стана. Но не схванах каква е разликата. Ако някой се сеща, моля да разясни! Благодаря !
Така става, като не чете добре условието => ". Print only unique palindromes".