0170. Two Sum III - Data structure design
Easy | Binary Search | 80 ms (100.00%), 20.2 MB (85.90%)
Last updated
Was this helpful?
Easy | Binary Search | 80 ms (100.00%), 20.2 MB (85.90%)
Last updated
Was this helpful?
Source: GitHub:
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 the TwoSum
object, with an empty array initially.
void add(int number)
Adds number
to the data structure.
boolean find(int value)
Returns true
if there exists any pair of numbers whose sum is equal to value
, otherwise, it returns false
.