lib/atcoder_greedy/templates/ruby/solve.rb in atcoder_greedy-0.1.1 vs lib/atcoder_greedy/templates/ruby/solve.rb in atcoder_greedy-0.2.0
- old
+ new
@@ -1,22 +1,2 @@
-# coding: utf-8
-require 'stringio'
-
-class NAME
- alias :puts_original :puts
- def initialize(input)
- @f = StringIO.new(input)
- end
-
- def gets
- @f.gets
- end
-
- def puts(a)
- puts_original a
- a
- end
-
- def solve
- # write your program here
- end
-end
\ No newline at end of file
+# CONTEST PROBLEM
+# Your code here