Tagged Questions

11
votes
7answers
662 views

What is Perl's secret of getting small code do so much?

I've seen many (code-golf) Perl programs out there and even if I can't read them (Don't know Perl) I wonder how you can manage to get such a small bit of code to do what would take 20 lines in some ...
8
votes
8answers
1k views

What's the shortest Perl program you can write for the number guessing game?

I'm looking for the shortest or most optimized solution for a simple game that generates a random number from 1 to 10 and then asks a user to enter their guess. If the user guesses the number then ...
7
votes
9answers
1k views

What's the point of Perl golf?

Perl golf is a programmers' game which involves solving a problem with the shortest perl program possible. (ie, the winner is the person who completes the round in the lowest number of (key)strokes). ...
2
votes
3answers
837 views

Smart Sudoku Golf

The point of this question is to create the shortest not abusively slow Sudoku solver. This is defined as: don't recurse when there are spots on the board which can only possibly be one digit. Here ...
2
votes
8answers
1k views

Perl golf: Print the powers of a number

What's the shortest Perl one-liner that print out the first 9 powers of a hard-coded 2 digit decimal (say, for example, .37), each on its own line? The output would look something like: 1 0.37 ...
1
vote
4answers
292 views

How to Rewrite of One Line Code (or Less Line Code in command line) of this code in Perl?

I have a code like that: #!/usr/bin/perl use strict; use warnings; my %proteins = qw/ UUU F UUC F UUA L UUG L UCU S UCC S UCA S UCG S UAU Y UAC Y UGU C UGC C UGG W CUU L CUC L CUA L CUG ...
0
votes
3answers
259 views

Perl - CodeGolf - Nested loops & SQL inserts

I had to make a really small and simple script that would fill a table with string values according to these criteria: 2 characters long 1st character is always numeric (0-9) 2nd character is (0-9) ...