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 พื้นที่สีขาวจะถูกละเว้น
Ungolfed
$_ = <>;
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!
แล้วใด ๆโปรแกรมที่ผมเขียนตรงตามข้อ จำกัด ตัวอักษรชั้นเรียน ... แน่นอนก็มีโอกาสที่จะสูญเสียในธุรกิจความยาว