摘要:
发现不是很清楚,遂整理StackOverflow如下 Generally, you want to use the built-in sorted() function which takes a custom comparator as its parameter. We need to pay 阅读全文
摘要:
给定一组非负整数 nums,重新排列它们每位数字的顺序使之组成一个最大的整数。 注意:输出结果可能非常大,所以你需要返回一个字符串而不是整数。 示例 1: 输入:nums = [10,2]输出:"210"示例 2: 输入:nums = [3,30,34,5,9]输出:"9534330"示例 3: 输 阅读全文
摘要:
Permutation First import itertools package to implement permutations method in python. This method takes a list as an input and return an object list 阅读全文
摘要:
给你一个字符串 s 和一个字符规律 p,请你来实现一个支持 '.' 和 '*' 的正则表达式匹配。 '.' 匹配任意单个字符'*' 匹配零个或多个前面的那一个元素所谓匹配,是要涵盖 整个 字符串 s的,而不是部分字符串。 说明: s 可能为空,且只包含从 a-z 的小写字母。p 可能为空,且只包含从 阅读全文
摘要:
你的朋友正在使用键盘输入他的名字 name。偶尔,在键入字符 c 时,按键可能会被长按,而字符可能被输入 1 次或多次。 你将会检查键盘输入的字符 typed。如果它对应的可能是你的朋友的名字(其中一些字符可能被长按),那么就返回 True。 示例 1: 输入:name = "alex", type 阅读全文