in reply to Re: Hash element exists/delete
in thread Hash element exists/delete

Update:

roboticus, You have assumed that the input is a list of words but it is of the format:

Word Frequency Word Frequency Word Frequency Word Frequency

Given this, the code should probably be:

my %H; while (<>) { my ( $word, $freq ) = split /\s+/, $_; $word = lc( $word ) ; $H{ $word } += $freq ; }

Although that does not change your primary thesis: people frequently miss the opportunity to clean up the data before storing it

The way to achieve this with minimum changes to your code is in my original response:

Original Response:

I think you meant:

$H{ $words[0] } += $words[1] ;

Replies are listed 'Best First'.
Re^3: Hash element exists/delete
by roboticus (Chancellor) on Jan 22, 2013 at 12:56 UTC

    tmharish:

    Yes, I was making an assumption about the input. For your input format, your code looks appropriate.

    ...roboticus

    When your only tool is a hammer, all problems look like your thumb.