Skip to content

Latest commit

 

History

History
180 lines (140 loc) · 5.53 KB

File metadata and controls

180 lines (140 loc) · 5.53 KB

English Version

题目描述

句子是由若干 token 组成的一个列表,token 间用 单个 空格分隔,句子没有前导或尾随空格。每个 token 要么是一个由数字 0-9 组成的不含前导零的 正整数 ,要么是一个由小写英文字母组成的 单词

  • 示例,"a puppy has 2 eyes 4 legs" 是一个由 7 个 token 组成的句子:"2""4" 是数字,其他像 "puppy" 这样的 tokens 属于单词。

给你一个表示句子的字符串 s ,你需要检查 s 中的 全部 数字是否从左到右严格递增(即,除了最后一个数字,s 中的 每个 数字都严格小于它 右侧 的数字)。

如果满足题目要求,返回 true ,否则,返回 false

 

示例 1:

example-1

输入:s = "1 box has 3 blue 4 red 6 green and 12 yellow marbles"
输出:true
解释:句子中的数字是:1, 3, 4, 6, 12 。
这些数字是按从左到右严格递增的 1 < 3 < 4 < 6 < 12 。

示例 2:

输入:s = "hello world 5 x 5"
输出:false
解释:句子中的数字是:5, 5 。这些数字不是严格递增的。

示例 3:

example-3

输入:s = "sunset is at 7 51 pm overnight lows will be in the low 50 and 60 s"
输出:false
解释:s 中的数字是:7, 51, 50, 60 。这些数字不是严格递增的。

示例 4:

输入:s = "4 5 11 26"
输出:true
解释:s 中的数字是:4, 5, 11, 26 。
这些数字是按从左到右严格递增的:4 < 5 < 11 < 26 。

 

提示:

  • 3 <= s.length <= 200
  • s 由小写英文字母、空格和数字 09 组成(包含 09
  • s 中数字 token 的数目在 2100 之间(包含 2100
  • s 中的 token 之间由单个空格分隔
  • s 中至少有 两个 数字
  • s 中的每个数字都是一个 小于 100 数,且不含前导零
  • s 不含前导或尾随空格

解法

Python3

class Solution:
    def areNumbersAscending(self, s: str) -> bool:
        curr = 0
        for t in s.split(' '):
            if t[0].isdigit():
                if curr >= int(t):
                    return False
                curr = int(t)
        return True

Java

class Solution {
    public boolean areNumbersAscending(String s) {
        int curr = 0;
        for (String t : s.split(" ")) {
            char c = t.charAt(0);
            if (Character.isDigit(c)) {
                int x = Integer.parseInt(t);
                if (curr >= x) {
                    return false;
                }
                curr = x;
            }
        }
        return true;
    }
}

TypeScript

function areNumbersAscending(s: string): boolean {
    let strs = s.split(' ');
    let prev = Number.MIN_SAFE_INTEGER;
    for (let str of strs) {
        let num = Number(str);
        if (!isNaN(num)) {
            if (num <= prev) return false;
            prev = num;
        }
    }
    return true;
}

C++

class Solution {
public:
    bool areNumbersAscending(string s) {
        int curr = 0;
        istringstream is(s);
        string t;
        while (is >> t) {
            if (isdigit(t[0])) {
                int x = stoi(t);
                if (curr >= x) return false;
                curr = x;
            }
        }
        return true;
    }
};

Go

func areNumbersAscending(s string) bool {
	curr := 0
	for _, t := range strings.Split(s, " ") {
		if unicode.IsDigit(rune(t[0])) {
			x, _ := strconv.Atoi(t)
			if curr >= x {
				return false
			}
			curr = x
		}
	}
	return true
}

...