def unique_integers_sum_to_zero(n):
# Create a list of integers from -(n//2) to (n//2)
result = list(range(-(n//2), n//2 + 1))
if n % 2 == 0:
result.remove(0)
return result
n = 7
print(unique_integers_sum_to_zero(n))
'''
run:
[-3, -2, -1, 0, 1, 2, 3]
'''