mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-19 04:51:24 +07:00
when the common (middle) expression is the leftmost in the left
sequence of comparisons and the rightmost in the right sequence of
comparisons. Then I removed code duplication from both branches of
`if (myCommonIsInLeftLeft) {}` since they became identical after that.
3 lines
44 B
Python
3 lines
44 B
Python
def func(x, y, z):
|
|
return 1 < x < z < y
|