コード例 #1
0
ファイル: TestFooBar.py プロジェクト: grovesr/foo_bar
 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])
コード例 #2
0
ファイル: TestFooBar.py プロジェクト: grovesr/foo_bar
 def test1(self):
     minions = [[5, 1, 5], [10, 1, 2]]
     res = answer3_3(minions)
     self.assertListEqual(res, [1,0])