summaryrefslogtreecommitdiff
path: root/avg-seg-len
blob: bfd4f6c746c00034a63d2ee058873c6707f57a0c (plain)
1
2
3
4
5
6
7
8
#!/usr/bin/env ruby

lens = []
while line = STDIN.gets
  lens << line.strip.split.size
end

puts lens.inject(:+)/lens.size.to_f