Ejemplo n.º 1
0
 def input(self):
     from Parser import parseOneInt
     return parseOneInt(open(self.inputPath))
Ejemplo n.º 2
0
 def output(self):
     from Parser import parseOneInt
     for o in parseOneInt(open(self.outputPath)):
         yield o[0]
Ejemplo n.º 3
0
 def output(self):
     from Parser import parseOneInt
     for o in parseOneInt(open(self.outputPath)):
         yield o[0]
Ejemplo n.º 4
0
 def input(self):
     from Parser import parseOneInt
     return parseOneInt(open(self.inputPath))