From c6c6877778fbc4cf26525e91c8b511162b6921da Mon Sep 17 00:00:00 2001 From: Patrick Michl Date: Mon, 7 Dec 2020 10:42:18 +0100 Subject: [PATCH] change to real input --- day_07/second.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/day_07/second.rb b/day_07/second.rb index d2af4b5..0d6b2d8 100644 --- a/day_07/second.rb +++ b/day_07/second.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -input = File.readlines('./test') +input = File.readlines('./input') map = input.map do |line| bag = line[/\A(\w+\s\w+)/]