Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

Re: Golf for unique digits

by choroba (Cardinal)
on Jan 09, 2013 at 11:31 UTC ( [id://1012444]=note: print w/replies, xml ) Need Help??


in reply to Golf for unique digits

perl -E'$y=2013;$y=~/$_/&&$c++for 0..9;say$c'
Update: and -> &&. Thanks space_monk.
لսႽ† ᥲᥒ⚪⟊Ⴙᘓᖇ Ꮅᘓᖇ⎱ Ⴙᥲ𝇋ƙᘓᖇ

Replies are listed 'Best First'.
Re^2: Golf for unique digits
by space_monk (Chaplain) on Jan 09, 2013 at 11:39 UTC

    Can you save a character by using && instead of and?

    A Monk aims to give answers to those who have none, and to learn from those who know more.

      perl -E'$y=2013;$c+=$y=~$_ for 0..9;say$c' perl -E'$y=2013;say~~map$y=~$_,0..9'

      Yup, just answered my own question and got a birdie
      perl -E '$y=2013;$y=~/$_/&&$c++for 0..9;say$c'
      A Monk aims to give answers to those who have none, and to learn from those who know more.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1012444]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others taking refuge in the Monastery: (2)
As of 2024-04-19 01:05 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found