Some slight improvements to the PHP version

$i = split("\n", fread(fopen('php://stdin','r'), 8192));
foreach($i as $l) {
        $u = split(" ",$l);
        $s = count($u);
        if (strlen(trim($u[0])) == 0) echo("not a ");
        for($n=0;$n<$s-1;$n++) {
                if (abs($u[$n] - $u[$n+1]) > $s) {
                        printf("not a ");
                        break;
                }
        }
        printf("match\n");
}

/*
PLUG: http://plug.org, #utah on irc.freenode.net
Unsubscribe: http://plug.org/mailman/options/plug
Don't fear the penguin.
*/

Reply via email to