100DaysofDSA

things I learned in Day 7:

Note: use the github provided TOC for navigaing.

Recursion(I-Basics):

Recursion is a technique where we devide a bigger problem into a smaller instance of the same problem, and solve the smaller problems to solve the bigger problem.

e.g. say you want the sum of all the elemnts of an array. For that you can also use recursion. Here you will devide the array into smaller parts and do summation operation on the smaller chunk till you get the total sum.