Challenge 6: Compute Sum of First 'n' Natural Numbers
In this challenge, your task is to compute the sum of the first 'n' natural numbers.
We'll cover the following...
Problem Statement
Implement a sum_N_Numbers
recursive function to compute the sum of the n
natural numbers (where (n) is a function ...