6 lines
176 B
Plaintext
6 lines
176 B
Plaintext
|
|
#/usr/bin/env ruby
|
||
|
|
require "combination"
|
||
|
|
|
||
|
|
combination = Combination.for STDIN.read.chomp
|
||
|
|
puts "Part 1: #{combination.zero_count}"
|
||
|
|
puts "Part 2: #{combination.zero_click_count}"
|