Help for this page

Select Code to Download


  1. or download this
        for $j ( 0 .. $#bits ) {
            $bits[$j] =~ s/1/x/;
            $bits[$j] =~ s/0/1/;
            $bits[$j] =~ s/x/0/;
        }
    
  2. or download this
        tr/01/10/ for @bits;