Skip to content

Commit c259e01

Browse files
committed
Added Python solution for "Maximum of Absolute Value Expression"
1 parent b01e3ea commit c259e01

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Python/Maximum of Absolute Value Expression.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def maxAbsValExpr(self, a: List[int], b: List[int]) -> int:
1313
x + y + i,
1414
x + y - i,
1515
x - y + i,
16-
x - y - i
16+
x - y - i,
1717
)
1818
for i, (x, y) in enumerate(zip(a, b))
1919
]

0 commit comments

Comments
 (0)