We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b01e3ea commit c259e01Copy full SHA for c259e01
Python/Maximum of Absolute Value Expression.py
@@ -13,7 +13,7 @@ def maxAbsValExpr(self, a: List[int], b: List[int]) -> int:
13
x + y + i,
14
x + y - i,
15
x - y + i,
16
- x - y - i
+ x - y - i,
17
)
18
for i, (x, y) in enumerate(zip(a, b))
19
]
0 commit comments