From 4f74c3ca66b21168e2af01535026877d1f74b1cc Mon Sep 17 00:00:00 2001 From: Abdul Rehman Nizamani Date: Sat, 23 Oct 2021 22:22:08 +0500 Subject: [PATCH] added author in comment --- Recursion/sum_of_1d_array.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Recursion/sum_of_1d_array.js b/Recursion/sum_of_1d_array.js index 9b0ac23..ec75c10 100644 --- a/Recursion/sum_of_1d_array.js +++ b/Recursion/sum_of_1d_array.js @@ -45,4 +45,10 @@ runningSum(array); // function call Note: recursive functions starts from index 1 of given array because we already assign index 0 value to result at the start recursive function runs until the index given to recursive function is greater than equal to the length or array given to runningSum function + + + Happy Coding!!! + + + Author: https://github.com/officialabdulrehman */