http://www.perlmonks.org?node_id=847797


in reply to Golf: Length of longest line in a file

24

Replies are listed 'Best First'.
Re^2: Golf: Length of longest line in a file
by eyepopslikeamosquito (Archbishop) on Jul 04, 2010 at 07:03 UTC

    This one gives the same result as BrowserUk's 24 but is two strokes less:

    perl -nE "$s^=$_}{say length$s" perl -lpe "\$Z[y///c]}{$_=@Z" perl -nE "\$Z[y///c]}{say$#Z" # update: alternative 22
    Instead of finding the maximum length by exploiting Perl's wonderful bitwise string operator, we instead exploit Perl's marvellous autovivification (exploiting autovivification is common in golf, as was done by Jasper in The golf course looks great, my swing feels good, I like my chances (Part V), for example).

    For golf historians, notice that the use of y///c instead of length is known as Abigail's length horror but was actually first invented by Joseph N Hall in 1996. And the use of a (one stroke) reference \ to trigger autovivification is known as Thelen's Device and was invented by Michael Thelen aka thelenm in 2002. This history is discussed in The Lighter Side of Perl Culture (Part IV): Golf.

      Three (two) less for cmd.

      perl -nE"$s^=$_}{say length$s" # Switch quotes for bash perl -nE "\$Z[y///c]}{say$#Z" # Switch quotes for bash perl -nE"\$Z[y///c]}{say$#Z" # Switch quotes for bash perl -nE\$Z[y///c]}{say$#Z # cmd specific 1234567890123456789012345
Re^2: Golf: Length of longest line in a file (explanation)
by toolic (Bishop) on Jul 04, 2010 at 01:30 UTC

      Correct. |= works also, but not &=.


      Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
      "Science is about questioning the status quo. Questioning authority".
      In the absence of evidence, opinion is indistinguishable from prejudice.