fixed errors
parent
38a4e4d6d5
commit
c6b86066c5
|
@ -1,11 +1,11 @@
|
||||||
#!/bin/env ruby
|
#!/bin/env ruby
|
||||||
#Find the two entries that sum to 2020; what do you get if you multiply them together?
|
#Find the two entries that sum to 2020; what do you get if you multiply them together?
|
||||||
|
|
||||||
numbers = File.readlines(./input)
|
numbers = File.readlines('./input')
|
||||||
numbers.each do |num1|
|
numbers.each do |num1|
|
||||||
numbers.each do |num2|
|
numbers.each do |num2|
|
||||||
sum = num1 + num2
|
sum = num1 + num2
|
||||||
puts num1 + '+' num2 '=' sum
|
puts num1 + '+' + num2 + '=' + sum
|
||||||
if sum == 2020
|
if sum == 2020
|
||||||
puts num1 * num2
|
puts num1 * num2
|
||||||
exit
|
exit
|
||||||
|
|
Loading…
Reference in New Issue