1
0
Fork 0
advent-of-code-2024/23/main.rb

11 lines
108 B
Ruby
Raw Normal View History

2024-12-23 08:35:21 -05:00
#!/usr/bin/env ruby
input = (ARGV.first.nil? ? DATA : ARGF)
.read
result = :solution
p result
__END__