ran rubocop

main
s00ner 2024-12-30 09:27:55 -05:00
parent 40b1d482a8
commit c8d09f9eab
1 changed files with 7 additions and 13 deletions

View File

@ -1,16 +1,11 @@
#!/usr/bin/env ruby #!/usr/bin/env ruby
# frozen_string_literal: true
require 'pry' require 'pry'
# Part 1 # Part 1
real_input = File.read("./input") real_input = File.read('./input')
sample = '3 4
4 3
2 5
1 3
3 9
3 3'
input = real_input input = real_input
@ -26,4 +21,3 @@ puts solution
p2 = col1.map { |value| value * col2.count(value) }.sum p2 = col1.map { |value| value * col2.count(value) }.sum
puts p2 puts p2