This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // TODO: Make typescript happy here. | |
| type JSONValue = | |
| | string | |
| | number | |
| | boolean | |
| | { [x: string]: JSONValue } | |
| | Array<JSONValue>; | |
| interface JSONObject { | |
| [x: string]: JSONValue; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| if ARGV.empty? | |
| data = DATA.readlines(chomp: true) | |
| else | |
| data = File.readlines(ARGV[0], chomp: true) | |
| end | |
| solved = {} | |
| expressions = {} | |
| data.each do |line| |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| if ARGV.empty? | |
| data = [1, 2, -3, 3, -2, 0, 4] | |
| else | |
| data = File | |
| .readlines(ARGV[0], chomp: true) | |
| .map(&:to_i) | |
| end | |
| def mix(data) | |
| # iterate over all the elements and |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| if ARGV.empty? | |
| data = DATA.readlines(chomp: true) | |
| else | |
| data = File.readlines(ARGV.first, chomp: true) | |
| end | |
| def blueprints(data) | |
| data.map do |line| | |
| match = /Blueprint (?<id>\d+): Each ore robot costs (?<ore_robot_ore>\d+) ore. Each clay robot costs (?<clay_robot_ore>\d+) ore. Each obsidian robot costs (?<obsidian_robot_ore>\d+) ore and (?<obsidian_robot_clay>\d+) clay. Each geode robot costs (?<geode_robot_ore>\d+) ore and (?<geode_robot_obsidian>\d+) obsidian./.match(line) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class Piece | |
| attr_reader :shape, :kind | |
| ORDER = [ | |
| :dash, | |
| :plus, | |
| :jay, | |
| :line, | |
| :square |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| if ARGV.empty? | |
| data = DATA.readlines(chomp: true) | |
| else | |
| data = File.readlines(ARGV[0], chomp: true) | |
| end | |
| VALVES = {} | |
| GRAPH = {} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # require 'set' | |
| # require 'byebug' | |
| if ARGV.empty? | |
| data = DATA.readlines(chomp: true) | |
| else | |
| data = File.readlines(ARGV[0], chomp: true) | |
| end | |
| ADJ = {} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require 'set' | |
| if ARGV.empty? | |
| data = DATA.readlines(chomp: true) | |
| y = 10 | |
| MAX = 20 | |
| else | |
| data = File.readlines(ARGV[0], chomp: true) | |
| y = 2000000 | |
| MAX = 4000000 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require 'set' | |
| if ARGV.empty? | |
| data = DATA.readlines(chomp: true) | |
| y = 10 | |
| else | |
| data = File.readlines(ARGV[0], chomp: true) | |
| y = 2000000 | |
| end | |
| sensors = Set.new |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require 'byebug' | |
| if ARGV.empty? | |
| input = <<~INPUT | |
| 498,4 -> 498,6 -> 496,6 | |
| 503,4 -> 502,4 -> 502,9 -> 494,9 | |
| INPUT | |
| else | |
| input = File.read(ARGV.first, chomp: true) | |
| end |