1
0
Fork 0
advent-of-code-2024/template.rb

12 lines
137 B
Ruby
Raw Normal View History

2024-12-02 19:11:11 -05:00
#!/usr/bin/env ruby
problem = 1
2024-12-10 08:27:28 -05:00
#input = File.readlines("#{problem}.input")
input = DATA.read
2024-12-02 19:11:11 -05:00
result = :solution
puts result
2024-12-10 08:27:28 -05:00
__END__