fork(1) download
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5.  
  6. namespace IndexOfAny
  7. {
  8. class Program
  9. {
  10. static void Main(string[] args)
  11. {
  12. Console.WriteLine("University of California, 1980-85".IndexOfAny("0123456789".ToCharArray()));
  13. }
  14. }
  15. }
Success #stdin #stdout 0.01s 131776KB
stdin
Standard input is empty
stdout
26