coded first attempt

master
Jeff Yates 2020-12-02 10:19:07 -05:00
parent 05991300a6
commit 38a4e4d6d5
1 changed files with 14 additions and 0 deletions

14
day01/solution1.rb Normal file
View File

@ -0,0 +1,14 @@
#!/bin/env ruby
#Find the two entries that sum to 2020; what do you get if you multiply them together?
numbers = File.readlines(./input)
numbers.each do |num1|
numbers.each do |num2|
sum = num1 + num2
puts num1 + '+' num2 '=' sum
if sum == 2020
puts num1 * num2
exit
end
end
end