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