Skip to content

Latest commit

 

History

History
47 lines (27 loc) · 704 Bytes

README_EN.md

File metadata and controls

47 lines (27 loc) · 704 Bytes

Description

Design an algorithm to find all pairs of integers within an array which sum to a specified value.

Example 1:

Input: nums = [5,6,5], target = 11

Output: [[5,6]]

Example 2:

Input: nums = [5,6,5,6], target = 11

Output: [[5,6],[5,6]]

Note:

  • nums.length <= 100000

Solutions

Python3

Java

...