Skip to content

Latest commit

 

History

History
102 lines (70 loc) · 2.9 KB

File metadata and controls

102 lines (70 loc) · 2.9 KB

English Version

题目描述

给你一个字符串 word ,该字符串由数字和小写英文字母组成。

请你用空格替换每个不是数字的字符。例如,"a123bc34d8ef34" 将会变成 " 123  34 8  34" 。注意,剩下的这些整数为(相邻彼此至少有一个空格隔开):"123""34""8""34"

返回对 word 完成替换后形成的 不同 整数的数目。

只有当两个整数的 不含前导零 的十进制表示不同, 才认为这两个整数也不同。

 

示例 1:

输入:word = "a123bc34d8ef34"
输出:3
解释:不同的整数有 "123"、"34" 和 "8" 。注意,"34" 只计数一次。

示例 2:

输入:word = "leet1234code234"
输出:2

示例 3:

输入:word = "a1b01c001"
输出:1
解释:"1"、"01" 和 "001" 视为同一个整数的十进制表示,因为在比较十进制值时会忽略前导零的存在。

 

提示:

  • 1 <= word.length <= 1000
  • word 由数字和小写英文字母组成

解法

word 按照字母切分,得到数字数组 nums,然后利用 set 去重,返回 set 的长度即可。

Python3

import re

class Solution:
    def numDifferentIntegers(self, word: str) -> int:
        nums = re.split(r'[a-z]+', word)
        return len({int(num) for num in nums if num != ''})

Java

class Solution {
    public int numDifferentIntegers(String word) {
        String[] nums = word.split("[a-z]+");
        Set<String> numSet = new HashSet<>();
        for (String num : nums) {
            if ("".equals(num)) {
                continue;
            }
            int j = 0;
            while (j < num.length() - 1 && num.charAt(j) == '0') {
                ++j;
            }
            numSet.add(num.substring(j));
        }
        return numSet.size();
    }
}

...