loom-benchmark-mbpp / 120 /solution /_reference.py
sqy201x's picture
Add files using upload-large-folder tool
b2dd9e4 verified
Raw
History Blame Contribute Delete
106 Bytes
def max_product_tuple(list1):
result_max = max([abs(x * y) for x, y in list1] )
return result_max