logo       

[SPOILER] Regular Quiz #8: msg#00297

Subject: [SPOILER] Regular Quiz #8
Corrected a bad blunder, I had a working version & then changed

    tr/'.//d;

to

    $allowed_punctuation = q('.);
    ...
    tr/$allowed_punctuation//d

without checking the results;( (or reading the manual)

changed a /^[a-z]/ to /^[:lower:]] to be locale sensitive.

changed sub substrings to remove duplicates from the list of substrings.


#!/bin/perl

use strict;
use warnings;

my %entries;

my $file = shift or die "Usage: $0 <file of words>\n";
process_words($file);
write_QandA();
exit;

sub process_words {
    my $input = shift;
    open INPUT, $input or die "Can't open $input: $!\n";
    foreach my $word (<INPUT>) {
        foreach my $substring ( substrings($word) ) {
            $entries{$substring} =
              ( exists $entries{$substring} ) ? "" : $word;
        }
    }
    close INPUT;
}

sub substrings {
    my $substring_length   = 4;
    my $string             = lc shift;
    $string =~ tr/'.//d;
    my %substrings =
      map { $_ => "" }
      grep { not /[^[:lower:]]/ }
      map { substr $string, $_, $substring_length }
      0 .. length($string) - $substring_length;
    return keys %substrings;
}

sub write_QandA {
    my $Qfile = "questions";
    my $Afile = "answers";
    open QUESTIONS, ">$Qfile" or die "Can't open $Qfile:$!\n";
    open ANSWERS,   ">$Afile"   or die "Can't open $Afile:$!\n";
    foreach my $substring ( sort keys %entries ) {
        unless ( $entries{$substring} eq "" ) {
            print QUESTIONS "$substring\n";
            print ANSWERS $entries{$substring};
        }
    }
    close ANSWERS;
    close QUESTIONS;
}

Attachment: InterScan_Disclaimer.txt
Description: Text document

<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