Skip to content

Latest commit

 

History

History
18 lines (11 loc) · 415 Bytes

sum_of_zero.md

File metadata and controls

18 lines (11 loc) · 415 Bytes

Problem Statement

You must implement the check_sum() function which takes in a list and returns True if the sum of two numbers in the list is zero. If no such pair exists, return False.

image

Sample Input

[10, -14, 26, 5, -3, 13, -5]

Sample Output

True