How to find max number in an array using tail recursion in java
First of all, there are better approaches for this, but this article focuses on the recursive approach, especially tail recursion(optimal)
So, what exactly is tail recursion?
Let’s understand this, in traditional recursion, we perform our recursive c...
sumant.dev2 min read