Dilema del chocolate

Dos hermanas están comiendo chocolate, cuyas piezas se representan como subarreglos de [l x w].

Escribe una función que devuelva True si el área total del chocolate es la misma para cada hermana.

Para ilustrarlo:

test_fairness([[4, 3], [2, 4], [1, 2]],
[[6, 2], [4, 2], [1, 1], [1, 1]])
➞ True

# Piezas de Agatha: [4, 3], [2, 4], [1, 2]
# Piezas de Bertha: [6, 2], [4, 2], [1, 1], [1, 1]

# Área total del chocolate de Agatha
# 4x3 + 2x4 + 1x2 = 12 + 8 + 2 = 22

# El área total del chocolate de Bertha es:
# 6x2 + 4x2 + 1x1 + 1x1 = 12 + 8 + 1 + 1 = 22

Ejemplos

test_fairness([[1, 2], [2, 1]], [[2, 2]]) ➞ True

test_fairness([[1, 2], [2, 1]], [[2, 2], [4, 4]]) ➞ False

test_fairness([[2, 2], [2, 2], [2, 2], [2, 2]], [[4, 4]]) ➞ True

test_fairness([[1, 5], [6, 3], [1, 1]], [[7, 1], [2, 2], [1, 1]]) ➞ False

Notas

N/A