|
|
|
|
|
by billpg
4101 days ago
|
|
"Our problem will be a very simple one: sum a list of n integers. To make this fair, we will assume that the integers all fit in a 32-bit signed int, and that their sum fits in a 32-bit signed int." What if my list is:
[2000000000, 2000000000, -2000000000, -2000000000] |
|
But it won't work for {2000000000, 2000000000}, as stated in the article.