Skip to content

Latest commit

 

History

History
134 lines (109 loc) · 3.65 KB

File metadata and controls

134 lines (109 loc) · 3.65 KB

中文文档

Description

Given a binary string s, return true if the longest contiguous segment of 1s is strictly longer than the longest contiguous segment of 0s in s. Return false otherwise.

  • For example, in s = "110100010" the longest contiguous segment of 1s has length 2, and the longest contiguous segment of 0s has length 3.

Note that if there are no 0s, then the longest contiguous segment of 0s is considered to have length 0. The same applies if there are no 1s.

 

Example 1:

Input: s = "1101"
Output: true
Explanation:
The longest contiguous segment of 1s has length 2: "1101"
The longest contiguous segment of 0s has length 1: "1101"
The segment of 1s is longer, so return true.

Example 2:

Input: s = "111000"
Output: false
Explanation:
The longest contiguous segment of 1s has length 3: "111000"
The longest contiguous segment of 0s has length 3: "111000"
The segment of 1s is not longer, so return false.

Example 3:

Input: s = "110100010"
Output: false
Explanation:
The longest contiguous segment of 1s has length 2: "110100010"
The longest contiguous segment of 0s has length 3: "110100010"
The segment of 1s is not longer, so return false.

 

Constraints:

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

Solutions

Python3

class Solution:
    def checkZeroOnes(self, s: str) -> bool:
        len0 = len1 = 0
        t0 = t1 = 0
        for c in s:
            if c == '0':
                t0 += 1
                t1 = 0
            else:
                t0 = 0
                t1 += 1
            len0 = max(len0, t0)
            len1 = max(len1, t1)
        return len1 > len0

Java

class Solution {
    public boolean checkZeroOnes(String s) {
        int len0 = 0, len1 = 0;
        int t0 = 0, t1 = 0;
        for (int i = 0; i < s.length(); ++i) {
            if (s.charAt(i) == '0') {
                t0 += 1;
                t1 = 0;
            } else {
                t0 = 0;
                t1 += 1;
            }
            len0 = Math.max(len0, t0);
            len1 = Math.max(len1, t1);
        }
        return len1 > len0;
    }
}

JavaScript

/**
 * @param {string} s
 * @return {boolean}
 */
 var checkZeroOnes = function(s) {
    let max0 = 0, max1 = 0;
    let t0 = 0, t1 = 0;
    for (let char of s) {
        if (char == '0') {
            t0++;
            t1 = 0;
        } else {
            t1++;
            t0 = 0;
        }
        max0 = Math.max(max0, t0);
        max1 = Math.max(max1, t1);
    }
    return max1 > max0;
}; 

...