2124. Check if All A's Appears Before All B's Обновлено: 2024-03-12 1 мин Algorithms , LeetCode СодержаниеLeetCode problem 2124class Solution: def checkString(self, s: str) -> bool: return "ba" not in s