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.


Compile the code and you will know the number of our offices around the globe

#python3
from functools import reduce
def foo(a, b): return a + b
print(reduce(foo, [-10, 10, -6, 10]))