Skip to content

Latest commit

 

History

History
16 lines (10 loc) · 389 Bytes

README.md

File metadata and controls

16 lines (10 loc) · 389 Bytes

76.Reverse Words in a String III

Description

Given a string, you need to reverse the order of characters in each word within a sentence while still preserving whitespace and initial word order.

Example

Input: "Let's take LeetCode contest"
Output: "s'teL ekat edoCteeL tsetnoc"

From

LeetCode