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