예제 #1
0
파일: Task6.cs 프로젝트: 24twelve/Contests
 public static int CountDistinctLetters(string str)
 {
     return(str.Where(x => Letters.IsMatch(x.ToString())).Distinct().Count());
 }