Two Sum #2273

Problem

Leetcode problem description for Two Sum #2273

View on Leetcode

Approach

Use efficient algorithm and data structures.

Time: O(n), Space: O(1)

Code

def solve():
    print('Solving problem 2273')