9 lines
109 B
Ruby
9 lines
109 B
Ruby
|
#!/usr/bin/env ruby
|
||
|
|
||
|
problem = 1
|
||
|
input = File.readlines("#{problem}.input")
|
||
|
|
||
|
result = :solution
|
||
|
|
||
|
puts result
|