Python recursion questions in interview

Python recursion questions in interview : Python recursion questions in interview are more often asked to a candidate to check his/her technical expertise. Therefore, in this blog we shall discuss those specific Python questions that uses recursion methodology. Recursion, in short, is type of function that calls it self. In blog, first we shall look into the basic prototype of a recursion function and then we shall examine few different example of recursive functions. Basic prototype of any recursive function: functionName(paramter): if some condition true/false terminate the recusion process also called base case else take out one unit of paramter

Read More