@hakatashi
2019年6月28日 pixiv社内勉強会 LT
@hakatashi (博多市)
コードゴルフ⛳
ご存知ですか?
入力された文字列から空行をすべて削除する
hoge
fuga
hoge
p
i
y
o
hoge
fuga
hoge
p
i
y
o
while text = gets
puts text unless text.chop.length == 0
end
62 bytes
while text = gets
puts text unless text.chop.length == 0
end
60 bytes
while t = gets
puts t unless t.chop.length == 0
end
51 bytes
while t = gets
puts t unless t == "\n"
end
42 bytes
while t = gets
puts t if t != "\n"
end
38 bytes
while gets
puts $_ if $_ != "\n"
end
36 bytes
while gets
puts$_ if$_!="\n"
end
32 bytes
puts$_ if$_!="\n"while gets
27 bytes
#!ruby -p
$_=""if$_=="\n"
25 bytes
$><<[*$<]-[$/]
12 bytes
(Code Golf - SlideShare より引用)
コードゴルフの大会を運営してます
前回大会のお題
(おしまい)