Live Batches
Masterclasses
Menu
Free Courses
Account
Login / Sign Up

Reverse A String

Easy Acceptance 48.00% Points 20.00

You are given a string s. Your task is to reverse the string using recursion only and return the reversed string. You are not allowed to use loops or built-in reverse functions.

Examples
Example 1

Example 1

Input: s = "hello"

Output: "olleh"

Explanation: The string is reversed using recursion.

Example 2

Example 2

Input: s = "abcd"

Output: "dcba"

Explanation: The characters appear in reverse order.

Example 3

Example 3

Input: s = "z"

Output: "z"

Explanation: A single character remains the same after reversing.

Hints
Hint 1
N/A
Constraints
  • 1 = length of s = 105
  • The string contains printable characters only
Companies
Visa Wayfair Mastercard
Topics
Recursion
Solution.cs C#JavaPythonC++Javascript

Unlock the code editor

Sign in to write, run, and submit your solution against the full test suite.

  • Run code against sample & hidden test cases
  • Save submissions and track your streak
  • Compare with editorial & community solutions