Logo

Programming-Idioms

History of Idiom 86 > diff from v3 to v4

Edit summary for version 4 by :

Version 3

2015-09-10, 18:36:04

Version 4

2015-10-29, 14:05:16

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.