aoc2020/day_18/first.rb

14 lines
169 B
Ruby

input = File.readlines('./input')
class Integer
def -(other)
self * other
end
end
out = input.map do |line|
eval line.gsub('*', '-')
end
puts out.inject :+