Practice Lab
dsa Skills Challenge
Master your dsa expertise with interactive coding missions and real-time validation.
Easy
Reverse String
Given a string, return the string reversed.
Guidelines
- Return a new reversed string
- Do not modify original string
Example Scenario
Input: "hello"
Output: "olleh"
Loading...