Leetcode 第 234 场周赛 A 5713. 字符串中不同整数的数目(正则语法糖)

2021-04-01 17:02:14 浏览数 (1)

利用正则表达式过滤掉字母 最后强转数字、去重 统计数目

代码语言:javascript复制
class Solution:
    def numDifferentIntegers(self, word: str) -> int:
        res = re.split(r'[a-z] ', word)
        #print(res)
        return len(set([int(i) for i in res if len(i)]))

0 人点赞