Method: Codeforces::Api::Contest#status

Defined in:
lib/codeforces/api/contest.rb

#status(contest_id, options = {}) ⇒ Object



28
29
30
31
32
33
# File 'lib/codeforces/api/contest.rb', line 28

def status(contest_id, options = {})
  options[:query] ||= {}
  options[:query].merge! :contestId => contest_id
  options[:query].merge! paginate(options[:offset])
  get("contest.status", options)
end