Errata

Games, Diversions & Perl Culture

Errata for Games, Diversions & Perl Culture

Submit your own errata for this product.

The errata list is a list of errors and their corrections that were found after the product was released.

The following errata were submitted by our customers and have not yet been approved or disproved by the author or editor. They solely represent the opinion of the customer.

Color Key: Serious technical mistake Minor technical mistake Language or formatting error Typo Question Note Update

Version Location Description Submitted by Date submitted
Printed Page 90
3rd paragraph, 6th line

The size of the DNA string is falsely given as 3x109. The power sign between 10 and 9
is missing. The correct length is then 3x10^9, which is consistent with the rest of
the sentence ("... some three gigabytes of storage space ... ")

Anonymous   
Printed Page 308
line15

The Fisher-Yates shuffle algorithm for-loop's iterator is incorrectly stated.

As stated:

for ($i = @$array; -$i;){

This should read

for ($i = @$array; --$i;){

Anonymous  May 25, 2010