logo       

[spoiler] easy qotw #8 answer: msg#00264

Subject: [spoiler] easy qotw #8 answer
#! perl -w

# This is a fairly straightforward solution.  I have a map from
# four-letter questions to the list of answers.  Of course, only
# single answers are correct.

use strict;

# Open the output.

open QH, "> questions" or die "Cannot open questions: $!\n";
open AH, "> answers" or die "Cannot open answers: $!\n";

# The key of %map is the four-letter "question", while the value of
# %map is a list of "answers".  Only single answers are correct.

my %map;

while (<>)
{
  chomp;

  # I've decided that the key is case insensitive, but the word is
  # not.  Therefore, iela is not a question, since it has two answers,
  # Dixieland and dixieland.

  my @letters = split //, lc;
  while (scalar @letters >= 4)
  {
    my $key = join('', @letters[0 .. 3]);
    shift @letters;

    # Only want the key if it all letters.
    next unless $key =~ /[a-z]{4}/;

    push @{$map{$key}}, $_;
  }
}

while (my ($question, $answers) = each %map)
{
  next unless @$answers == 1;
  print QH "$question\n";
  print AH "@$answers\n";
}

# Close the output.

close QH or die "Cannot close questions: $!\n";
close AH or die "Cannot close answers: $!\n";

# end file 08.easy



<Prev in Thread] Current Thread [Next in Thread>
Google Custom Search

Recently Viewed:
linux.arklinux....    user-groups.lin...    kde.usability/2...    ietf.ipp/2002-0...    mail.spam.spamc...    os.netbsd.devel...    audio.cd-record...    text.unicode.de...    php.documentati...    games.fps.halfl...    window-managers...    suse.oracle.gen...    bug-tracking.gn...    video.dvdrip.us...    xfree86.cvs/200...    java.netbeans.m...    network.argus/2...    culture.sf.kill...    debian.ports.al...    freebsd.questio...    qplus.devel/200...    handhelds.palm....   
Home | blog view | USPTO Patent Archive | advertise | OSDir is an inevitable website. super tiny logo

Free Magazines

Cisco News
Receive a free quarterly e-newsletter with exclusive articles on how Cisco IT uses its own products and solutions to enable the business.
subscribe

Systems Management News, the newspaper for IT systems administration and data center managers! Each issue of Systems Management News is chock-full of news and analysis to help you understand what's happening in your field.
subscribe

The Enterprise Newsweekly eWeek is the essential technology information source for builders of e-business.
subscribe

Oracle Magazine Oracle Magazine contains technology strategy articles, sample code, tips, Oracle and partner news, how to articles for developers and DBAs, and more. Oracle (NASDAQ: ORCL) is the world's largest enterprise software company.
subscribe

Total Telecom Total Telecom is "The Economist of the communications industry".
subscribe