Recursion
As a computer science student, you’ll often hear the words recursion or recurrence to label functions that “call themselves”, most likely in a algorithms course. When i first got in contact with recursion, it was for implementing the factorial function in a non-iterative way.
[Read More]