Skip to content
C

Two Sum

Easyjavapythonccppjavascript

Given an array and a target value, determine whether two different positions hold values that add up to the target.

Input Format

The first line contains two integers N and target. The second line contains N space-separated integers.

Output Format

Print 1 if such a pair exists, otherwise print 0.

Input (stdin)

Output

Run your code to see output here...