Skip to content

Instantly share code, notes, and snippets.

View barbie's full-sized avatar

Barbie barbie

View GitHub Profile
use strict;
use warnings;
use List::Util qw(sum);
my %result;
while (<>) {
chomp;
my $line = $_;
my (undef, $topic, @scores) = split /\s*\|\s*/, $line;