A. Rex
|
Registered User
|
I like math. My favorite posts:
I'm also a fan of this Perl-golfed Arabic-to-Roman-numerals translator (though I was just a messenger) and this NP-hardness proof. |
|
2d |
comment |
Code Golf: Running Water @LiraNuna: Wait, do you have a solution in 300 strokes? Why don't you post it? |
|
Nov 21 |
comment |
Code-Golf: What is the shortest program that compiles and crashes? @Mark and leppie: That code DOES compile, as perl -c verifies. The error is a runtime error, and Perl just helpfully identifies the location in the program for you. |
|
Nov 13 |
revised |
Code Golf: Sierpinski’s Triangle One stroke improvement |
|
Nov 13 |
awarded | ● Popular Question |
|
Nov 13 |
comment |
Code Golf: Sierpinski’s Triangle You can save 5 characters by reading from stdin with <> if you want. If you don't, pop still saves characters. Either way, you can use the ridiculous construct $c=2**~-<>; or $c=2**~-pop; to save on parentheses around the /2. |
|
Nov 13 |
comment |
Code Golf: Sierpinski’s Triangle Here's a 104-stroke solution that might inspire someone: $_='/'.$"x(1+1<<<>)."/ \n";$\=$_.$\while s'.__.' /\ 'g||s#/.+?\S.#$"."/__\\"x($&=~y///c/4).$"#ge;print"" -- yes, it prints the empty string at the end =) |
|
Nov 13 |
comment |
Code Golf: Sierpinski’s Triangle Re #!perl: I include that because it's the shortest string so that Perl itself will interpret the switches. If I can push them to the command-line, great! If not, I can count those as raw characters. I think the second solution should be 87 characters now, which of course is longer than the first. It is possible in theory, however, to have it be less -- see my improvements on @mobrule's solution for the "Musical Notes" competition: stackoverflow.com/questions/1575096/… |
|
Nov 13 |
comment |
Code Golf: Sierpinski’s Triangle @Chris Lutz: That's fine. I put the solutions in this order because I presume the first is the minimal one accepted by this particular golfing community. The Perl golf community would accept the second. It's worth noting that Perl golf has a long and storied tradition and I believe is the source of the word "golf". |
|
Nov 13 |
comment |
Code Golf: Sierpinski’s Triangle @ephemient: I wasn't counting the newlines you just deleted anyway; they were there only for readability reasons (if you can say "readability" in this context). After I'm sure you're done editing, I'll change the answer to make that clear. Thanks for the help, though. |
|
Nov 13 |
comment |
Code Golf: Sierpinski’s Triangle @Chris Lutz: Traditional Perl golf scoring is the length of your code plus how many characters you have to add over the usual perl. So in my case, I think it's 77 strokes plus 4 for the extra -pa. |
|
Nov 13 |
answered | Code Golf: Sierpinski’s Triangle |
|
Nov 11 |
comment |
Regex: Does an XPATH string point to an attribute? @Tomalak: You're right, of course. I stand by my statement that there is in fact no regular expression that works, because it would have to keep track of nesting ... |
|
Nov 11 |
revised |
Regex: Does an XPATH string point to an attribute? More corner cases! |
|
Nov 10 |
revised |
Regex: Does an XPATH string point to an attribute? Fixed regex, hopefully!; added 189 characters in body |
|
Nov 10 |
accepted | Regex: Does an XPATH string point to an attribute? |
|
Nov 10 |
answered | Regex: Does an XPATH string point to an attribute? |
|
Nov 10 |
comment |
Regex: Does an XPATH string point to an attribute? I think it won't work on @attr, which select the "attr" attribute of the context node. |
|
Nov 2 |
revised |
What algorithms compute directions from point A to point B on a map? PPS not true anymore |
|
Nov 2 |
awarded | ● Notable Question |
|
Nov 2 |
answered | merge heaps algorithm |
|
Nov 2 |
revised |
Function overloading by return type? Display bug! |
|
Nov 1 |
awarded | ● Great Answer |
|
Nov 1 |
revised |
Code Golf: Spider webs added 346 characters in body |
|
Nov 1 |
revised |
Code Golf: Spider webs 2 more chars |
|
Nov 1 |
revised |
Code Golf: Spider webs 1 less character -- beats the other Perl solution now! |
|
Nov 1 |
revised |
Code Golf: Spider webs 12 characters? |
|
Nov 1 |
revised |
Code Golf: Spider webs Some more characters. |
|
Nov 1 |
revised |
Code Golf: Spider webs Saved 2 characters |
|
Nov 1 |
answered | Code Golf: Spider webs |
|
Oct 21 |
comment |
Code Golf: Lasers @mobrule: Save six strokes: reorder the first line as s!.!$t{$s++}=$&!ge,$s=$r+=99for<>;, change %d=split//,.." to %d=..=~/./g`, and change grep{..}%t to grep..,%t |
|
Oct 19 |
comment |
Code Golf: Musical Notes By the way, if people don't know: if you have #!perl [switches] on the first line of a Perl program, you don't actually need the shell to interpret the switches. Perl will read them and apply them itself. So even if command-line switches aren't allowed, shebang ones definitely are -- it's part of the language you get when you just run perl. |
|
Oct 19 |
comment |
Code Golf: Musical Notes @Robert P: You're right that it's 122 -- oops. @LiraNuna: This coincides with how it's scored in Perl golf competitions. I don't know if you should allow it here (you're the MC!), although I think it'd be cool to see what other languages can do with switches and every time I've participated I wanted switches. I do think it's remarkable that I can get savings even if I have to write the #!perl though. |
|
Oct 19 |
comment |
Code Golf: Musical Notes @mobrule: 121 characters with #!perl -ap\n$\="$:\n"x5;$p=4+(5-ord)%7,s#..##,$\=~s#(.)\K$#--$p?$_*!($p&~3)?"$1|".(16<$p*$_?"\\":$1).$1:$1x4:O.$1x3#gemfor@F after replacing both occurrences of \n with literal newlines. |
|
Oct 19 |
comment |
Code Golf: Musical Notes @mobrule regarding |$: It depends on block structure. Both $& and $' are only set after a successful match, which is bad for our situation because we want them unset after failure; however, they're local to the current block, so depending on that, the code might still work. (You need this for the /\d+/ actually.) Incidentally, for some versions of the code, /../ worked fine as a pattern (using $') regardless of block structure because it successfully matched no matter what. |
|
Oct 19 |
revised |
Factorial Algorithms in different languages Fixed link. |
|
Oct 19 |
comment |
Factorial Algorithms in different languages @e.c.ho: You fixed the truncation issue but broke the Whitespace code. I've reverted back to my edit, which keeps the truncation issue fixed but makes the Whitespace work again. Thanks for your help! @Steven Schlansker: It should work now in all languages. |
|
Oct 19 |
comment |
Factorial Algorithms in different languages @Steven Schlansker: It's a bug in the Stack Overflow display code that I don't know how to get around. (The code is being cut off above.) If you look at the revision history, it'll display the code correctly. |
|
Oct 19 |
comment |
Code Golf: Musical Notes @mobrule: Your new code is amazing! But I don't know why you put the $' club away: change your pattern to /\// or m'/' (whichever you prefer), use $' again instead of $&, and save one stroke. |
|
Oct 18 |
comment |
Code Golf: Musical Notes @mobrule: 136 now!! @o=($/)x10;for(split$",<>){$N=4+(5-ord)%7;/\/|$/;$_.=--$N?$'*$N>0&$N<4?16<$N*$'?" |\\":" | ":$"x4:" O "for@o}$|--&&y@ @-@,print for@o (spaces wrong as always) |
|
Oct 17 |
comment |
Code Golf: Musical Notes @mobrule: 143 now: @o=($/)x10;for(split$",<>){$N=4+(5-ord)%7;s@.*/@@;$L=$_;$_.=--$N?$L*$N>0&$N<4?16<$N*$L?" |\\":" | ":$"x4:" O "for@o}$|--&&y@ @-@,print for@o (spaces wrong as always) |
|
Oct 17 |
comment |
Code Golf: Musical Notes @mobrule: Using tons of tricks, I can golf yours down to 152 characters: $\=$/;for(split$",<>){y@DCBAGFE/@3-9,@;($N,$L)=eval;$o[$_].=($p=$N-$_)?$L*$p>0&$p<4?16<$p*$L?" |\\":" | ":$"x4:" O "for 0..9}$|--&&y@ @-@,print for@o (as in another golf challenge, you have to fix the string constants because spaces got lost) |
|
Oct 17 |
comment |
Code Golf: Musical Notes @LiraNuna: Thank you so much for posting weekly golf challenges! They are very well-designed, and I have very much enjoyed both golfing myself and watching others. |
|
Oct 17 |
revised |
Code Golf: Musical Notes -2 characters by removing \n |
|
Oct 17 |
answered | Code Golf: Musical Notes |
|
Oct 10 |
comment |
Code Golf: Beehive @mobrule: By the way, I never told you that your code is awesome. Anyway, to get your code into two-digit range, change -($W%2) to 0-$W%2. Binary - binds looser than % which binds looser than unary -. |
|
Oct 10 |
comment |
Code Golf: Beehive The forgotten -l switch is a shame, because that would count for 3 characters in Perl golf competitions, or maybe 2 characters if you don't care about trailing newlines with @mobrule's print$/.substr. In any case, here's 101 characters, which works assuming a -l switch and corrected string constants: @h=(3,6)x pop;$x=1+($W=1+3*pop)%2*@h;print substr$"."__/ \\"x$W." __"x$W,$_,$W-!$x--for-6*$W,0,@h |
|
Oct 10 |
comment |
Code Golf: Beehive @LiraNuna: There are a couple issues. One is with Stack Overflow, in that the string constants had their spaces compressed (they're the same as in the post above). The other is that I didn't realize I was running Perl with the -l switch, which probably should count as characters. But with these two changes, yes, I've checked and it does work. =) |
|
Oct 10 |
comment |
Code Golf: Beehive Finally, 102 characters with a rewrite that also fixes the 99 limitation: $h=pop;$x=1+($W=1+3*pop)%2*2*$h;print substr$"."__/ \\"x$W." __"x$W,$_,$W-!$x--for-6*$W,0,(3,6)x$h |
|
Oct 10 |
comment |
Code Golf: Beehive You can save 2 more characters by replacing 0 by $,=$/ and removing the assignment $,=$/;. The characters saved are 0 and ;. |
|
Sep 12 |
awarded | ● Notable Question |
