a little better active_parts.py. [#METR-2807]

This commit is contained in:
Michael Kolupaev 2014-07-07 15:51:11 +04:00
parent 639d1ad15f
commit a90dea2974

View File

@ -30,6 +30,8 @@ for m in parts:
if x1 >= x2 and y1 <= y2 and l1 < l2 and (x1, y1) != (x2, y2): # 2 contains 1
pass
elif x1 > y2: # 1 is to the right of 2
if x1 != y2 + 1:
print # чтобы на глаз было видно пропущенные номера
(x2, y2, l2, s2) = (x1, y1, l1, s1)
print s1
else: