mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-18 20:41:22 +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
57 B
Python
3 lines
57 B
Python
def func(x, y, z):
|
|
return x > 1 <caret>and y > z > x
|