Show More
Commit Description:
added test pair assignment, requests new input, downloads input
Commit Description:
added test pair assignment, requests new input, downloads input
File last commit:
Show/Diff file:
Action:
app/models/test_pair.rb | 9 lines | 395 B | text/x-ruby | RubyLexer |
Jittat Fakcharoenphol
added test pair assignment, requests new input, downloads input
r213 # TestPair stores an input-solution pair for a problem. This is used
# in a certain "test-pair"-type problem for the CodeJom competition
# which follows the Google Code Jam format, i.e., a participant only
# submits a solution to a single random input that the participant
# requested. This input-solution pair is a TestPair.
Jittat Fakcharoenphol
added test_pair model
r209 class TestPair < ActiveRecord::Base
Jittat Fakcharoenphol
added test pair assignment, requests new input, downloads input
r213 belongs_to :problem
Jittat Fakcharoenphol
added test_pair model
r209 end