예제 #1
0
 private static bool IsPolarId(string id)
 {
     return
         (Byr.IsMatch(id) &&
          Iyr.IsMatch(id) &&
          Eyr.IsMatch(id) &&
          Hgt.IsMatch(id) &&
          Hcl.IsMatch(id) &&
          Ecl.IsMatch(id) &&
          Pid.IsMatch(id));
 }