fork download
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4.  
  5. public class Test
  6. {
  7. public static void Main()
  8. {
  9. string text = "енот, енот, гваделупский енот, косумельский енот, енот, енот-полоскун, енот-ракоед, косумельский енот";
  10. var result = text.Split(',').Select(x => x.Trim()).Distinct().Aggregate((r, word) => r + ", " + word);
  11. Console.WriteLine(result);
  12. }
  13. }
Success #stdin #stdout 0.06s 24040KB
stdin
Standard input is empty
stdout
енот, гваделупский енот, косумельский енот, енот-полоскун, енот-ракоед