package main import "fmt" func main() { var numbers []int printSlice(numbers) /* 允许向空切片追加元素 */ numbers = append(numbers, 0) printSlice(numbers) /* 向切片 ...
分类:
移动开发 时间:
2020-06-09 09:21:48
阅读次数:
69
字符串 定义: 由一系列字符组成的不可变序列容器,存储的是字符的编码值 通常包含在单引号(‘ ’),双引号(”“),三引号(''' ''') 三引号字符串常用于函数的注释 字符串常用方法 统计字符串长度 str01 = "人生苦短,我用python!" print(len(str01)) # 14 ...
分类:
其他好文 时间:
2020-06-08 23:43:40
阅读次数:
71
逐位计算 思路: 遍历字符串,逐位加和,用一个变量记录是否产生进位。 class Solution: def addBinary(self, a: str, b: str) -> str: res = '' if len(a)<len(b): a,b = b,a temp = 0 for i in ...
分类:
其他好文 时间:
2020-06-08 19:04:04
阅读次数:
49
class Solution(object): def isSubsequence(self, s, t): """ :type s: str :type t: str :rtype: bool """ if len(s) > len(t): return False elif len(s) == ...
分类:
其他好文 时间:
2020-06-08 14:51:19
阅读次数:
47
方法一:二分查找。 class Solution(object): # 二分查找 def kthSmallest(self, matrix, k): """ :type matrix: List[List[int]] :type k: int :rtype: int """ n = len(matr ...
分类:
其他好文 时间:
2020-06-08 14:43:04
阅读次数:
48
动态规划 思路: 参考62. 不同路径 代码: class Solution: def uniquePathsWithObstacles(self, obstacleGrid: List[List[int]]) -> int: m = len(obstacleGrid) n = len(obstac ...
分类:
其他好文 时间:
2020-06-07 15:05:47
阅读次数:
65
#include <bits/stdc++.h> using namespace std; #define MAX 100 class UnionSet{ private: int data[MAX+1];//即上级数组 public: UnionSet(int len){ for(int i=1;... ...
分类:
其他好文 时间:
2020-06-06 21:25:48
阅读次数:
62
1 #include<iostream> 2 using namespace std; 3 4 int main() 5 { 6 string t; 7 cin>>t; 8 int len = t.length(),i; 9 10 for(i = 0;i<len;i++) 11 { 12 t[len ...
分类:
其他好文 时间:
2020-06-06 18:39:11
阅读次数:
64
###题目 在20000个数中找一个满足下列条件的最大集合: 集合中所有数之间的最大公因数是1(即两两互质) ###代码 def _2018(arr: list): # 准备工具 arr = list(set(arr)) arr.sort() size = len(arr) my_dict = {} ...
分类:
其他好文 时间:
2020-06-06 18:25:27
阅读次数:
60
for m in range(1,22): for n in range(1,22): for p in range(1,22): for q in range(1,22): if (7-m)*(7-n)*(7-p)*(7-q)==4 and len(set([m,n,p,q]))==4: prin ...
分类:
编程语言 时间:
2020-06-06 17:04:31
阅读次数:
158