Perl、32 + 32 = 64
文字列はSTDINで期待されています。出力はSTDOUTに書き込まれます。空白は無視されます。タスクの私の解釈は、プログラムがそれ自体で実行してスコアを取得できる必要があるということです。
$/ = $,;
$_ = <>;
s x\sxxg;
$\ = length;
print s x[0-9a-z]xxgi,
' + ',
s x.xxg,
' = '
コメントなしでゴルフ
$/ = $,; # The input separator becomes undefined, because the default for $, is "undef"
$_ = <>; # now $_ takes the whole file (STDIN) instead of the first line
s x\sxxg; # $_ =~ s/\s//g;
# white space is removed from $_
$\ = length; # The number of the other characters are put into $\,
# which is automatically printed the end of "print".
print s x[0-9a-z]xxgi, # s/[0-9a-z]//gi
# Remove alphanumeric characters and return their count
' + ',
s x.xxg, # s/.//g
# Remove the remaining special characters and return their count.
# "." does not catch new lines, but we have already
# removed white spaces including new lines.
' = '
同じバイトカウントのバリエーションがいくつか見つかりました。たとえば:
$/ = $x;
$_ = <>, s x\sxxg;
$\ = split $x;
print s x[\da-z]xxgi,
" + ",
s x.xxg,
' = '
例
質問の例:
echo 'http://stackexchange.com' | perl a.pl
20 + 4 = 24
自身で実行(a.pl
):
cat a.pl | perl a.pl
32 + 32 = 64
ファイルサイズは104バイトであるため、40バイトは空白として無視されます。
Perl、29 + 29 = 58
$_=<>;s x\sxxg;$\=length;print s x[0-9a-z]xxgi,' + ',s/.//g,' = '
文字列はSTDINで想定されており、最初の行に制限されています。結果はSTDOUTに出力されます。空白は無視されます。
非ゴルフ
$_ = <>;
s x\sxxg; # same as s/\s//gx; removes white space;
$\ = length($_); # sum is automatically appended at the end of print
print sx[0-9a-z]xxgi, # same as s/[0-9a-z]//gi;
# the number of alphanumeric characters
' + ',
s/.//g, # the number of the remaining special characters
' = '
例
ファイルa.pl
にはPerlスクリプトが含まれています。
質問の例:
echo 'http://stackexchange.com' | perl a.pl
20 + 4 = 24
自分自身で実行する:
cat a.pl | perl a.pl
29 + 29 = 58
のファイルサイズa.pl
は65バイトなので、7バイトは空白として無視されます。
O.
、O?
とO!
して、任意のプログラムI書き込みは、文字クラスの制限を満たしている...もちろん、それはおそらく長事業に失うことがあります。