Class Solution

java.lang.Object
g1501_1600.s1544_make_the_string_great.Solution

public class Solution extends Object
1544 - Make The String Great.<p>Easy</p> <p>Given a string <code>s</code> of lower and upper case English letters.</p> <p>A good string is a string which doesn&rsquo;t have <strong>two adjacent characters</strong> <code>s[i]</code> and <code>s[i + 1]</code> where:</p> <ul> <li><code>0 <= i <= s.length - 2</code></li> <li><code>s[i]</code> is a lower-case letter and <code>s[i + 1]</code> is the same letter but in upper-case or <strong>vice-versa</strong>.</li> </ul> <p>To make the string good, you can choose <strong>two adjacent</strong> characters that make the string bad and remove them. You can keep doing this until the string becomes good.</p> <p>Return <em>the string</em> after making it good. The answer is guaranteed to be unique under the given constraints.</p> <p><strong>Notice</strong> that an empty string is also good.</p> <p><strong>Example 1:</strong></p> <p><strong>Input:</strong> s = &ldquo;leEeetcode&rdquo;</p> <p><strong>Output:</strong> &ldquo;leetcode&rdquo;</p> <p><strong>Explanation:</strong> In the first step, either you choose i = 1 or i = 2, both will result &ldquo;leEeetcode&rdquo; to be reduced to &ldquo;leetcode&rdquo;.</p> <p><strong>Example 2:</strong></p> <p><strong>Input:</strong> s = &ldquo;abBAcC&rdquo;</p> <p><strong>Output:</strong> &quot;&quot;</p> <p><strong>Explanation:</strong> We have many possible scenarios, and all lead to the same answer. For example: &ldquo;abBAcC&rdquo; &ndash;> &ldquo;aAcC&rdquo; &ndash;> &ldquo;cC&rdquo; &ndash;> &quot;&quot; &ldquo;abBAcC&rdquo; &ndash;> &ldquo;abBA&rdquo; &ndash;> &ldquo;aA&rdquo; &ndash;> &quot;&quot;</p> <p><strong>Example 3:</strong></p> <p><strong>Input:</strong> s = &ldquo;s&rdquo;</p> <p><strong>Output:</strong> &ldquo;s&rdquo;</p> <p><strong>Constraints:</strong></p> <ul> <li><code>1 <= s.length <= 100</code></li> <li><code>s</code> contains only lower and upper case English letters.</li> </ul>
  • Constructor Details

    • Solution

      public Solution()
  • Method Details