Given a vector of numbers, negate all elements contained within.
-+n will return -n, because all +'s are removed.--n will return n, because the first - turns the second minus into a +.negate({1, 2, 3, 4}) ➞ {-1, -2, -3, -4}
negate({-1, 2, -3, 4}) ➞ {1, -2, 3, -4}
negate({}) ➞ {}If you get an empty vector, return an empty vector: {}