Ruby (I get paid to write this)

This commit is contained in:
Bill Rossi 2023-12-19 16:37:08 -05:00
parent ec12f162e4
commit f6eba9c423
2 changed files with 21 additions and 0 deletions

15
ruby/2015/1/problem.rb Normal file
View File

@ -0,0 +1,15 @@
input = File.read("../data/2015/1/input.txt").split("")
counts = input.tally
final_floor = counts["("] - counts[")"]
puts "Part 1: #{final_floor}"
floor = 0
steps = 0
input.each do |char|
floor += 1 if char == "("
floor -= 1 if char == ")"
steps += 1
break if floor < 0
end
puts "Part 2: #{steps}"

6
ruby/bin/run Executable file
View File

@ -0,0 +1,6 @@
#!/usr/bin/env bash
year=$1
day=$2
time ruby $year/$day/problem.rb