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
例如输出1-10的数字,但是7除外。 a=1 while a < 11: if a == 7: pass else: print(a) a=a+1 输出1-100所以的偶数 a=1 while a < 101: temp = a % 2 if temp = 0: print(a) else: pas ...
分类:
编程语言 时间:
2020-02-07 01:02:04
阅读次数:
72
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>表单</title></head><body> <form> 用户名: <input type="text"> </br> 密码: <input type="pas ...
分类:
Web程序 时间:
2020-02-05 23:09:14
阅读次数:
94
源程序: #include <iostream>#include <fstream>using namespace std; class triangle{private: int a, b, c; double area;public: triangle(int aa, int bb, int c ...
分类:
其他好文 时间:
2020-02-05 20:31:04
阅读次数:
72
976. Largest Perimeter Triangle(三角形的最大周长) 链接 https://leetcode cn.com/problems/largest perimeter triangle 题目 给定由一些正数(代表长度)组成的数组 A,返回由其中三个长度组成的、面积不为零的三角 ...
分类:
其他好文 时间:
2020-02-05 11:29:30
阅读次数:
56
H - Triangle Mr. Frog has n sticks, whose lengths are 1,2, 3??n respectively. Wallice is a bad man, so he does not want Mr. Frog to form a triangle wi ...
1、知乎 Vulkan-高性能渲染 2、Life of a triangle - NVIDIA's logical pipeline 3、Round Robin 算法 4、NVIDIA Developer Vulkan 5、Vulkan SDK Tutorial 6、Vulkan In 30 Min ...
分类:
其他好文 时间:
2020-02-03 10:17:02
阅读次数:
96