Practice Interview Questions
| Question | Status |
|---|---|
Given a string, write a function that uses recursion to reverse it. You are not allowed to use any built-in functions for reversing the string.
Example:
Input: "hello"
Output: "olleh"
Input: "Python"
Output: "nohtyP"
Constraints: