Module: AtCoderFriends::Parser::Main

Defined in:
lib/at_coder_friends/parser/main.rb

Overview

entry point for parsing problem description

Class Method Summary collapse

Class Method Details

.process(pbm) ⇒ Object



9
10
11
12
13
14
15
16
17
18
# File 'lib/at_coder_friends/parser/main.rb', line 9

def process(pbm)
  Sections.process(pbm)
  SampleData.process(pbm)
  InputFormat.process(pbm)
  InputType.process(pbm)
  Constraints.process(pbm)
  Modulo.process(pbm)
  Interactive.process(pbm)
  Binary.process(pbm)
end