list、set、str的转换: str转list:list(str) list转set:set(list) set转list:list(set) 注:list转set时会自动去重! 将list[str] digits转成list[int]: 法一:[ int(i) for i in digits ...
分类:
其他好文 时间:
2020-04-22 00:20:15
阅读次数:
56
Cutting an integer means to cut a K digits lone integer Z into two integers of (K/2) digits long integers A and B. For example, after cutting Z = 1673 ...
分类:
其他好文 时间:
2020-04-20 11:55:53
阅读次数:
62
一道简单题,重点在于进位的处理。 有意思的地方是,进位的动作非常适合使用递归描述,一位一位的处理,并由上一位的计算结果决定该位的处理方式。 定义递归的坐标:flag:当前处理的位数;isCarry:上一位计算是否进位 public final int[] plusOne(int[] digits) ...
分类:
其他好文 时间:
2020-04-20 00:55:48
阅读次数:
57
Problem : Given a non negative integer, you could swap two digits at most once to get the maximum valued number. Return the maximum valued number you ...
分类:
其他好文 时间:
2020-04-18 13:33:58
阅读次数:
75
"题目" 同余定理,任何一个10进制数n 都可以表示成 n = a 10^x + b 10^(x 1) + .... c 10^0 那么 n ≡ ( a 10^x + b 10^(x 1) + .... c 10) mod 9 ( a 10^x + b 10^(x 1) + .... c 10) m ...
分类:
其他好文 时间:
2020-04-18 12:07:52
阅读次数:
48
思路: 将原list中的数字拼接成字符串res;将int(res) + 1转成list。 1 class Solution(object): 2 def plusOne(self, digits): 3 """ 4 :type digits: List[int] 5 :rtype: List[int ...
分类:
其他好文 时间:
2020-04-17 23:35:39
阅读次数:
72
1001 A+B Format (20分) Calculate a+b and output the sum in standard format -- that is, the digits must be separated into groups of three by commas (unl ...
分类:
其他好文 时间:
2020-04-09 16:44:40
阅读次数:
77
```dart /// https://stackoverflow.com/a/9462382 nFormatter(dynamic num, [int digits]) { var si = [ {'value': 1, 'symbol': ''}, {'value': 1e3, 'symbol'... ...
分类:
其他好文 时间:
2020-04-06 10:02:20
阅读次数:
124
1、字符串 字符串可以用单引号、双引号或反引号指定为文字常量。 2、标量 标量浮点值可以字面上写成 [-](digits)[.(digits)] 的形式。 3、时间序列过滤器 瞬间向量过滤器 瞬时向量过滤器允许在指定的时间戳内选择一组时间序列和每个时间序列的单个样本值。在最简单的形式中,近指定指标( ...
分类:
其他好文 时间:
2020-04-05 13:41:23
阅读次数:
120
题目: 来源:力扣(LeetCode)链接:https://leetcode-cn.com/problems/find-numbers-with-even-number-of-digits 给你一个整数数组 nums,请你返回其中位数为 偶数 的数字的个数。 示例 1: 输入:nums = [12, ...
分类:
其他好文 时间:
2020-04-03 15:13:15
阅读次数:
92