fork(1) download
  1. using System;
  2. using System.Linq;
  3. using System.IO;
  4. using System.Text.RegularExpressions;
  5.  
  6. public class Test
  7. {
  8. public static void Main()
  9. {
  10. var s = "][poiuytrewqasdfghjkl";
  11. bool notOnlyLetters = s.Any(x => !(x >= 65 && x <= 122));
  12. Console.WriteLine(notOnlyLetters);
  13.  
  14. }
  15. }
Success #stdin #stdout 0s 29664KB
stdin
Standard input is empty
stdout
False