Skip to content

Latest commit

 

History

History
30 lines (18 loc) · 382 Bytes

Ex_1_4_02.md

File metadata and controls

30 lines (18 loc) · 382 Bytes
title date draft tags categories
Algorithm4 Java Solution 1.4.02
2019-08-06 15:54:00 +0800
false
JAVA
TECH
archives

1.4.02

Problem:

Modify ThreeSum to work properly even when the int values are so large that adding two of them might cause overflow.

Solution:

use big integer

code:

Ex_1_4_02.java

Reference: