|
|
|
|
|
by benmmurphy
1599 days ago
|
|
The Java solution is simpler because they are finding the average of 2 positive signed integers. So if you add 2 31 bit positive signed integers the result will fit in 32 bits and then you can just do an unsigned right shift to get the average. |
|