最新 最热

python 字符串搜索

text = 'yeah, but no, but yeah, but no, but yeah' Search for the location of the first occurrence text.find('no') 10 text = 'Today is 11/27/2012. PyCon star...

2022-01-10
0

Leetcode 题目解析之 Plus One

Given a non-negative number represented as an array of digits, plus one to the number.

2022-01-09
0

LeetCode笔记:357. Count Numbers with Unique Digits

这道题的意思是,对于0到10的n次方内的数,计算其中所有数都唯一的数的数量,比如19每一位都是唯一的数字,而11有两个1重复了,是这个意思,所以当给出n为2时,是计算0到99内的唯一组成数的数量,只有11、22...这些重复的数的组成不...

2021-11-23
0

LeetCode笔记:202. Happy Number

一看到这个题目我是懵逼的,看一个数字是不是happy,出题人真有童心。想找规律吧算了几个数字感觉没得规律找啊。从最简单的思路来看就是不断循环看最后得到的是不是1了,但是返回true的判断容易,什么时候就可以下结论说这个...

2021-11-23
0

Leetcode|组合|17. 电话号码的字母组合(无脑回溯)

题目简单,不需任何技巧,直接套用回溯模板即可 【吐槽】:题目有一点没有说清楚,比如提供的输入digits里面是否有重复数字?以及输出结果中的ad是否等于da?,既然不要求顺序输出,而且返回的是组合而非排列,那么只输出da而不输出ad...

2021-09-18
0

2021-09-16:给定一个仅包含数字 2-9 的字符串,返回所有

2021-09-16:给定一个仅包含数字 2-9 的字符串,返回所有它能表示的字母组合。答案可以按 任意顺序 返回。给出数字到字母的映射如下(与电话按键相同)。注意 1 不对应任何字母。按键2对应:'a', 'b', &#x...

2021-09-17
0

Excel常用函数

2、指定单元格求和:输入=sum(),在括号中间按住ctrl连续点击即可选择需要求和的数据

2021-08-24
0

07 Maximum 69 Number

Given a positive integer num consisting only of digits 6 and 9.

2021-08-18
0

05 Subtract the Product and Sum of Digits of an Integer

Given an integer number n, return the difference between the product of its digits and the sum of its digits.

2021-08-18
0

LeetCode 0165 - Compare Version Numbers

Compare two version numbers version1 and version2.If version1 > version2 return 1; if version1 < version2 return -1;otherwise return 0.

2021-08-11
1