Perl, 32 + 32 = 64
Dizenin STDIN içinde olması bekleniyor. Çıktı STDOUT'a yazılır. Beyaz boşluk yok sayılır. Görev hakkındaki yorumum, programın puanı almak için kendi başına çalışabilmesi gerektiğidir.
$/ = $,;
$_ = <>;
s x\sxxg;
$\ = length;
print s x[0-9a-z]xxgi,
' + ',
s x.xxg,
' = '
Yorum yapılmamış
$/ = $,; # 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.
' = '
Aynı bayt sayıları ile birkaç varyasyon buldum, örneğin:
$/ = $x;
$_ = <>, s x\sxxg;
$\ = split $x;
print s x[\da-z]xxgi,
" + ",
s x.xxg,
' = '
Örnekler
Sorudan örnek:
echo 'http://stackexchange.com' | perl a.pl
20 + 4 = 24
Kendi kendine çalışıyor ( a.pl
):
cat a.pl | perl a.pl
32 + 32 = 64
Dosya boyutu 104 bayttır, bu nedenle 40 bayt beyaz boşluk olarak yok sayılır.
Perl, 29 + 29 = 58
$_=<>;s x\sxxg;$\=length;print s x[0-9a-z]xxgi,' + ',s/.//g,' = '
Dizenin STDIN'de olması beklenir ve ilk satırla sınırlıdır. Sonuç STDOUT'a yazdırılır. Beyaz boşluk yok sayılır.
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
' = '
Örnekler
Dosya a.pl
Perl komut dosyası içerir.
Sorudan örnek:
echo 'http://stackexchange.com' | perl a.pl
20 + 4 = 24
Kendi kendine koşmak:
cat a.pl | perl a.pl
29 + 29 = 58
Dosya boyutu a.pl
65 bayttır, bu nedenle 7 bayt beyaz boşluk olarak yok sayılır.
O.
,O?
veO!
daha sonra herhangi bir uzunlukta iş kaybetmek muhtemeldir ders Of programım yazma ... karakter sınıfı kısıtlama karşılamaktadır.