diff options
-rw-r--r-- | 05/a.rb | 11 | ||||
-rw-r--r-- | 05/b.rb | 15 |
2 files changed, 26 insertions, 0 deletions
@@ -0,0 +1,11 @@ +max = 0 +File.readlines('input.txt').map do |line| + line.tr('FBLR', '0101') +end.each do |line| + row = line.slice(0, 7).to_i 2 + seat = line.slice(7, 3).to_i 2 + id = row * 8 + seat + max = [id, max].max +end + +puts max @@ -0,0 +1,15 @@ +missing = 0 +File.readlines('input.txt').map do |line| + line.tr('FBLR', '0101') +end.map do |line| + row = line.slice(0, 7).to_i 2 + seat = line.slice(7, 3).to_i 2 + row * 8 + seat +end.sort.reduce do |last_seen, current| + if current - 1 != last_seen + missing = current - 1 + end + current +end + +puts missing |