Code for the Advent of Code event
aoc advent-of-code
at main 6 lines 181 B view raw
1#!/usr/bin/env ruby 2# frozen_string_literal: true 3 4require_relative '../lib/aoc/intcode' 5 6puts AoC::Intcode::CPU.new.print_output!(false).load!(ARGV[0]).run!.output.map(&:chr).join