Ejemplo n.º 1
0
 def test2(self):
     minions = [[390, 185, 624], [686, 351, 947], [276, 1023, 1024], [199, 148, 250]]
     res = answer3_3(minions)
     self.assertListEqual(res, [2,3,0,1])
Ejemplo n.º 2
0
 def test1(self):
     minions = [[5, 1, 5], [10, 1, 2]]
     res = answer3_3(minions)
     self.assertListEqual(res, [1,0])