Given a list of integers, return a new list where each element is the sum of all the elements in the original list except the current element.
[4, 5, 2, 1]
[8, 7, 10, 11]
Bot