Reverse Words in a String III

Easy

Topics
StringTwo Pointers

Given a string s of words separated by single spaces, reverse the characters of each word while preserving word order and spacing.

Example 1

Input:  s = "Lets code"
Output: "steL edoc"

Example 2

Input:  s = "God Ding"
Output: "doG gniD"

Constraints

  • 1 <= s.length <= 5*10^4
  • Words are separated by single spaces with no leading/trailing spaces.
Run ⌘' · Submit ⌘⏎