in reply to having fun with RE - was: Re: One Zero variants_without_repetition
in thread One Zero variants_without_repetition

i had some time, and just for fun i optimized the above RE: this is faster by avoiding alot of backtracking.
$_ = "00001111"; print "$_\n" while (s/(1*)0(0*)1/$2${1}10/);
Oha
  • Comment on Re: having fun with RE - was: Re: One Zero variants_without_repetition
  • Download Code