Skip to content

Latest commit

 

History

History
51 lines (27 loc) · 712 Bytes

README_EN.md

File metadata and controls

51 lines (27 loc) · 712 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

...