示例#1
0
 def test_7(self):
     print("Lines (1,2) and (2, 3):")
     are_overlapping(1, 2, 2, 3)
     print()
示例#2
0
 def test_1(self):
     print("Lines (1,2) and (3, 4):")
     are_overlapping(1, 2, 3, 4)
     print()
示例#3
0
 def test_6(self):
     print("Lines (1,10) and (-1, 5):")
     are_overlapping(1, 10, -1, 5)
     print()
示例#4
0
 def test_5(self):
     print("Lines ('a','b') and ('c', 'd'):")
     are_overlapping("a", "b", "c", "d")
示例#5
0
 def test_4(self):
     print("Lines (2,2) and (2, 2):")
     are_overlapping(2, 2, 2, 2)
     print()
示例#6
0
 def test_3(self):
     print("Lines (1,3) and (5, 6):")
     are_overlapping(1, 3, 5, 6)
     print()
示例#7
0
 def test_2(self):
     print("Lines (1,4) and (2, 6):")
     are_overlapping(1, 4, 2, 6)
     print()