in reply to Re: Looping through a file, reading each line, and adding keys/editing values of a hash
in thread Looping through a file, reading each line, and adding keys/editing values of a hash
Why use a post-increment instead of a pre-increment when the value is not being used? $gene_count{ $row[18] }++ is (imo) better written ++$gene_count{$row[18]} so the increment is obvious.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Looping through a file, reading each line, and adding keys/editing values of a hash
by Kenosis (Priest) on Dec 06, 2013 at 16:48 UTC | |
|
Re^3: Looping through a file, reading each line, and adding keys/editing values of a hash
by Anonymous Monk on Dec 05, 2013 at 20:16 UTC | |
by GrandFather (Saint) on Dec 05, 2013 at 20:47 UTC | |
by choroba (Cardinal) on Dec 06, 2013 at 17:10 UTC |