0170. Two Sum III - Data structure design
Easy | Binary Search | 80 ms (100.00%), 20.2 MB (85.90%)
Source: LeetCode - Two Sum III - Data structure design GitHub: Solution / Performance
Design a data structure that accepts a stream of integers and checks if it has a pair of integers that sum up to a particular value.
Implement the TwoSum
class:
TwoSum()
Initializes theTwoSum
object, with an empty array initially.void add(int number)
Addsnumber
to the data structure.boolean find(int value)
Returnstrue
if there exists any pair of numbers whose sum is equal tovalue
, otherwise, it returnsfalse
.
Last updated