//杨辉三角(数组) /* * @Description: Given a non-negative integer numRows, generate the first numRows of Pascal's triangle. * Input: 5 * Output: * [ * [1], * ...
分类:
编程语言 时间:
2020-03-06 15:00:14
阅读次数:
78
1、题目 Given a non-negative index k where k ≤ 33, return the kth index row of the Pascal's triangle. Note that the row index starts from 0. In Pascal's ...
分类:
其他好文 时间:
2020-03-02 01:09:35
阅读次数:
82
1、题目 Given a non-negative integer numRows, generate the first numRows of Pascal's triangle. In Pascal's triangle, each number is the sum of the two nu ...
分类:
其他好文 时间:
2020-03-01 23:19:06
阅读次数:
67
1 """ 2 Given a non-negative integer numRows, generate the first numRows of Pascal's triangle. 3 In Pascal's triangle, each number is the sum of the t ...
分类:
其他好文 时间:
2020-02-28 01:38:29
阅读次数:
74
1. Bertrand Triangle r=1; %circle radius x0=0; y0=0; %centre of circle %points for circle t=linspace(0,2*pi,200); xp=r*cos(t); yp=r*sin(t); %angles of ...
分类:
其他好文 时间:
2020-02-20 10:21:47
阅读次数:
67
经常用于提示框,下拉菜单等(csdn也很多用到,最后一图),看图: 由于在网页中经常要用到,所以特地研究 图片实现(感觉low)、svg实现(小题大作了),所以最后还是css画比较不错,兼容性也不错 三角形画法 html结构 <div class="triangle" </div 三角形画法 用bo ...
分类:
Web程序 时间:
2020-02-18 18:10:40
阅读次数:
96
rowIndex=0 -> len = 1 所以 例如 rowIndex=3 1.初始化 res=[0,0,0,0],res[0]=1 res = [1,0,0,0] 2.从后往前加,循环 rowIndex-1 次,当前位=当前位+前一位 [1,0,0,0] [1(不变),1(=1+0),0,0] ...
分类:
其他好文 时间:
2020-02-16 14:32:52
阅读次数:
58
''' 生成器generator创建 1.由列表生成式改写 2.函数定义中有yield 生成器的调用方式 1.通过for调用 2.通过try except调用,并且获得返回值 ''' # l = [x*x for x in range(10)] ##[0, 1, 4, 9, 16, 25, 36, ...
分类:
其他好文 时间:
2020-02-13 21:22:28
阅读次数:
93
遇到个不会的 Effective triangulation Tiling and rasterization both work on fragment patches larger than a single pixel; e.g. for Mali GPUs the tiling will u ...
分类:
其他好文 时间:
2020-02-11 20:52:47
阅读次数:
92
Problem : Given a triangle, find the minimum path sum from top to bottom. Each step you may move to adjacent numbers on the row below. For example, gi ...
分类:
其他好文 时间:
2020-02-10 00:20:24
阅读次数:
81