[2020][ruby][6.x]

pull/2/head
Alpha Chen 4 years ago
parent cccdf1e45e
commit f5660e8938

@ -0,0 +1,6 @@
# p ARGF.read.split("\n\n").map {|g| g.gsub("\n", "").chars.uniq.count }.sum
p ARGF.read.split("\n\n").map {|group|
people = group.split("\n").map(&:chars)
first = people.shift
first.count {|answer| people.all? {|answers| answers.include?(answer) }}
}.sum
Loading…
Cancel
Save