Skip to content

Latest commit

 

History

History
 
 

2124. Check if All A's Appears Before All B's

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

Given a string s consisting of only the characters 'a' and 'b', return true if every 'a' appears before every 'b' in the string. Otherwise, return false.

 

Example 1:

Input: s = "aaabbb"
Output: true
Explanation:
The 'a's are at indices 0, 1, and 2, while the 'b's are at indices 3, 4, and 5.
Hence, every 'a' appears before every 'b' and we return true.

Example 2:

Input: s = "abab"
Output: false
Explanation:
There is an 'a' at index 2 and a 'b' at index 1.
Hence, not every 'a' appears before every 'b' and we return false.

Example 3:

Input: s = "bbb"
Output: true
Explanation:
There are no 'a's, hence, every 'a' appears before every 'b' and we return true.

 

Constraints:

  • 1 <= s.length <= 100
  • s[i] is either 'a' or 'b'.

Similar Questions:

Solution 1.

// OJ: https://leetcode.com/problems/check-if-all-as-appears-before-all-bs/
// Author: github.com/lzl124631x
// Time: O(N)
// Space: O(1)
class Solution {
public:
    bool checkString(string s) {
        int i = 0, N = s.size();
        while (i < N && s[i] == 'a') ++i;
        while (i < N && s[i] == 'b') ++i;
        return i == N;
    }
};

Solution 2.

Look for ba in the string.

// OJ: https://leetcode.com/problems/check-if-all-as-appears-before-all-bs/
// Author: github.com/lzl124631x
// Time: O(N)
// Space: O(1)
class Solution {
public:
    bool checkString(string s) {
        for (int i = 1, N = s.size(); i < N; ++i) {
            if (s[i - 1] == 'b' && s[i] == 'a') return false;
        }
        return true;
    }
};