java.lang.Object
g0501_0600.s0557_reverse_words_in_a_string_iii.Solution

public class Solution extends Object
557 - Reverse Words in a String III.<p>Easy</p> <p>Given a string <code>s</code>, reverse the order of characters in each word within a sentence while still preserving whitespace and initial word order.</p> <p><strong>Example 1:</strong></p> <p><strong>Input:</strong> s = &ldquo;Let&rsquo;s take LeetCode contest&rdquo;</p> <p><strong>Output:</strong> &ldquo;s&rsquo;teL ekat edoCteeL tsetnoc&rdquo;</p> <p><strong>Example 2:</strong></p> <p><strong>Input:</strong> s = &ldquo;God Ding&rdquo;</p> <p><strong>Output:</strong> &ldquo;doG gniD&rdquo;</p> <p><strong>Constraints:</strong></p> <ul> <li><code>1 <= s.length <= 5 * 10<sup>4</sup></code></li> <li><code>s</code> contains printable <strong>ASCII</strong> characters.</li> <li><code>s</code> does not contain any leading or trailing spaces.</li> <li>There is <strong>at least one</strong> word in <code>s</code>.</li> <li>All the words in <code>s</code> are separated by a single space.</li> </ul>
  • Constructor Details

    • Solution

      public Solution()
  • Method Details