Skip to content

Latest commit

 

History

History
16 lines (10 loc) · 245 Bytes

README.md

File metadata and controls

16 lines (10 loc) · 245 Bytes

74.Reverse String

Description

Write a function that takes a string as input and returns the string reversed.

Example

Input: 'Hello'
Output: 'olleH'

From

LeetCode