14 lines
169 B
Ruby
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 :+
|