1 comment

[ 2988 ms ] story [ 539 ms ] thread
A python implementation of is_prime(n):

  return re.compile(r'^1?$|^(11+)\1+$').match('1' * n) is None