diff --git a/2017/input/day_13.txt b/2017/input/day_13.txt new file mode 100644 index 0000000..bf9eb2d --- /dev/null +++ b/2017/input/day_13.txt @@ -0,0 +1,44 @@ +0: 3 +1: 2 +2: 4 +4: 8 +6: 5 +8: 6 +10: 6 +12: 4 +14: 6 +16: 6 +18: 17 +20: 8 +22: 8 +24: 8 +26: 9 +28: 8 +30: 12 +32: 12 +34: 10 +36: 12 +38: 12 +40: 8 +42: 12 +44: 12 +46: 10 +48: 12 +50: 12 +52: 14 +54: 14 +56: 12 +58: 14 +60: 14 +62: 14 +64: 14 +66: 14 +68: 12 +70: 14 +72: 14 +74: 14 +76: 14 +80: 18 +82: 14 +90: 18 + diff --git a/2017/ruby/day_13.rb b/2017/ruby/day_13.rb new file mode 100644 index 0000000..6ec1ff7 --- /dev/null +++ b/2017/ruby/day_13.rb @@ -0,0 +1,62 @@ +input = ARGF.read.strip +# input = <