예제 #1
0
파일: test.py 프로젝트: G-story/algorithm
 def test6(self):
     set_A([10, 20, 30, 1, 2])
     set_B([10, 20, 30])
     self.assertEqual(jlis(-1, -1), 5)
예제 #2
0
파일: test.py 프로젝트: G-story/algorithm
 def test4(self):
     set_A([1, 2, 4])
     set_B([3, 4, 7])
     self.assertEqual(jlis(-1, -1), 5)
예제 #3
0
파일: test.py 프로젝트: G-story/algorithm
 def test5(self):
     set_A([1, 2, 3])
     set_B([4, 5, 6])
     self.assertEqual(jlis(-1, -1), 6)
예제 #4
0
파일: test.py 프로젝트: G-story/algorithm
 def test3(self):
     set_A([1])
     set_B([3])
     self.assertEqual(jlis(-1, -1), 2)