Exercise: A Sum of Zero
Explore how to use loops to solve a problem of checking if any two numbers in a list sum to zero. Learn to implement the check_sum function and strengthen your understanding of loops and recursion with practical coding.
We'll cover the following...
We'll cover the following...
Problem statement
You are required to implement the check_sum() function which takes in a list and returns True ...