Logo

Programming-Idioms

History of Idiom 86 > diff from v4 to v5

Edit summary for version 5 by :

Version 4

2015-10-29, 14:05:16

Version 5

2015-11-30, 12:37:31

Idiom #86 Check if integer multiplication will overflow

Write boolean function multiplyWillOverflow which takes two integers x, y and return true if (x*y) overflows.

Idiom #86 Check if integer multiplication will overflow

Write boolean function multiplyWillOverflow which takes two integers x, y and return true if (x*y) overflows.