We decided to start publishing brain teasers in software and electronics. Here is the second one. We'll post the answer in about a week.
#python3
from functools import reduce
def foo(a, b): return a + b
print(reduce(foo, [-10, 10, -6, 10]))