Class Solution
java.lang.Object
g1901_2000.s2000_reverse_prefix_of_word.Solution
2000 - Reverse Prefix of Word.<p>Easy</p>
<p>Given a <strong>0-indexed</strong> string <code>word</code> and a character <code>ch</code>, <strong>reverse</strong> the segment of <code>word</code> that starts at index <code>0</code> and ends at the index of the <strong>first occurrence</strong> of <code>ch</code> ( <strong>inclusive</strong> ). If the character <code>ch</code> does not exist in <code>word</code>, do nothing.</p>
<ul>
<li>For example, if <code>word = "abcdefd"</code> and <code>ch = "d"</code>, then you should <strong>reverse</strong> the segment that starts at <code>0</code> and ends at <code>3</code> ( <strong>inclusive</strong> ). The resulting string will be <code>"dcbaefd"</code>.</li>
</ul>
<p>Return <em>the resulting string</em>.</p>
<p><strong>Example 1:</strong></p>
<p><strong>Input:</strong> word = “abcdefd”, ch = “d”</p>
<p><strong>Output:</strong> “dcbaefd”</p>
<p><strong>Explanation:</strong> The first occurrence of “d” is at index 3.</p>
<p>Reverse the part of word from 0 to 3 (inclusive), the resulting string is “dcbaefd”.</p>
<p><strong>Example 2:</strong></p>
<p><strong>Input:</strong> word = “xyxzxe”, ch = “z”</p>
<p><strong>Output:</strong> “zxyxxe”</p>
<p><strong>Explanation:</strong> The first and only occurrence of “z” is at index 3.</p>
<p>Reverse the part of word from 0 to 3 (inclusive), the resulting string is “zxyxxe”.</p>
<p><strong>Example 3:</strong></p>
<p><strong>Input:</strong> word = “abcd”, ch = “z”</p>
<p><strong>Output:</strong> “abcd”</p>
<p><strong>Explanation:</strong> “z” does not exist in word.</p>
<p>You should not do any reverse operation, the resulting string is “abcd”.</p>
<p><strong>Constraints:</strong></p>
<ul>
<li><code>1 <= word.length <= 250</code></li>
<li><code>word</code> consists of lowercase English letters.</li>
<li><code>ch</code> is a lowercase English letter.</li>
</ul>
-
Constructor Summary
Constructors -
Method Summary
-
Constructor Details
-
Solution
public Solution()
-
-
Method Details
-
reversePrefix
-