Fork me on GitHub
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 26 下一页
摘要: 曼哈顿距离 class Solution { public String alphabetBoardPath(String target) { int x = 0, y = 0, nx = 0, ny = 0; StringBuffer ans = new StringBuffer(""); for 阅读全文
posted @ 2019-08-02 16:29 cznczai 阅读(245) 评论(0) 推荐(0) 编辑
摘要: class Solution { public int tribonacci(int n) { int T0 = 0; int T1 = 1; int T2 = 1; int arr[] = new int [40]; arr[0] = 0; arr[1] = 1; arr[2] = 1; for( 阅读全文
posted @ 2019-08-02 16:28 cznczai 阅读(223) 评论(0) 推荐(0) 编辑
摘要: 有推文说这个东西 https://mp.weixin.qq.com/s?__biz=MzUyNjQxNjYyMg==&mid=2247486013&idx=2&sn=ad0211c2b25a1ac1ce10aa5bd95298ae&chksm=fa0e65bccd79ecaa62958b412f92 阅读全文
posted @ 2019-08-01 17:45 cznczai 阅读(397) 评论(0) 推荐(0) 编辑
摘要: 函数的参数 默认参数可以简化函数的调用。设置默认参数时,有几点要注意: 一是必选参数在前,默认参数在后,否则Python的解释器会报错(默认参数不能放在必选参数前面:报错 ,构造函数没有必要默认值 因为每次都要输入两个); 二是如何设置默认参数。 当函数有多个参数时,把变化大的参数放前面,变化小的参 阅读全文
posted @ 2019-08-01 10:58 cznczai 阅读(1341) 评论(0) 推荐(0) 编辑
摘要: 抽象 函数就是最基本的一种代码抽象的方式。 调用函数 可以通过help(abs)查看abs函数的帮助信息 定义函数 Python中,定义一个函数要使用def语句,依次写出函数名、括号、括号中的参数和冒号:,然后,在缩进块中编写函数体,函数的返回值用return语句返回 函数体内部的语句在执行时,一旦 阅读全文
posted @ 2019-07-31 14:27 cznczai 阅读(10496) 评论(0) 推荐(0) 编辑
摘要: Jan 17th 2015 | From the print edition The fall in the price of oil and gas provides a once in a generation opportunity to fix bad energy policies. on 阅读全文
posted @ 2019-07-31 09:48 cznczai 阅读(468) 评论(0) 推荐(0) 编辑
摘要: 常用函数介绍 三角函数 sin正弦 sinh双曲正弦 asin反正弦 asinh 反双曲正弦 cos余弦 cosh双曲余弦 acos反余弦 acosh 反双曲余弦 tan正切 tanh双曲正切 atan反正切 atan 反双曲正切 指数函数与对数函数 exp 指数 log e为底的对数 log10常 阅读全文
posted @ 2019-07-30 17:48 cznczai 阅读(357) 评论(0) 推荐(0) 编辑
摘要: list list是一种有序的集合,可以随时添加和删除其中的元素。跟java不一样的是 可以使用arr[ 1] 0 x = len(arr) 索引的数字为 0~ len(arr) 1 len(arr)~ 1 超过会报错 list是一个可变的有序表,所以,可以往list中追加元素到末尾: append 阅读全文
posted @ 2019-07-30 10:10 cznczai 阅读(282) 评论(0) 推荐(0) 编辑
摘要: ①E commerce in China is sweeping the board. ②Last year online sales in China hit $366bn, almost as much as in America and Britain combined. ③Growth ha 阅读全文
posted @ 2019-07-29 09:34 cznczai 阅读(613) 评论(0) 推荐(0) 编辑
摘要: 竞赛选题 进行试题分析,对应试题要考察哪些问题,结合自己的自身知识进行判断 主观问题\客观问题 做好它就行,做好一问写一问 建模与计算 尝试建立不同模型并计算验证,找到合理的模型,并计算结果出最优或合理的结果 论文写作 在进行完整的写作前,要了解模型,了解所有的计算结果,并对论文的框架进行架构,看如 阅读全文
posted @ 2019-07-28 16:45 cznczai 阅读(322) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 26 下一页