码迷,mamicode.com
首页 >  
搜索关键字:pascals triangle    ( 1342个结果
120 Triangle 三角形最小路径和
给出一个三角形(数据数组),找出从上往下的最小路径和。每一步只能移动到下一行中的相邻结点上。比如,给你如下三角形:[ [2], [3,4], [6,5,7], [4,1,8,3]]则从上至下最小路径和为 11(即,2 + 3 + 5 + 1 = 11)注意:加分项:如果你可以只使用 O(n) 的额外 ...
分类:其他好文   时间:2018-04-05 14:29:32    阅读次数:205
119 Pascal's Triangle II 帕斯卡三角形 II Pascal's Triangle II
给定一个索引 k,返回帕斯卡三角形(杨辉三角)的第 k 行。例如,给定 k = 3,则返回 [1, 3, 3, 1]。注:你可以优化你的算法到 O(k) 的空间复杂度吗?详见:https://leetcode.com/problems/pascals-triangle-ii/description/ ...
分类:其他好文   时间:2018-04-05 13:27:18    阅读次数:209
118 Pascal's Triangle 帕斯卡三角形
给定 numRows, 生成帕斯卡三角形的前 numRows 行。例如, 给定 numRows = 5,返回[ [1], [1,1], [1,2,1], [1,3,3,1], [1,4,6,4,1]]详见:https://leetcode.com/problems/pascals-triangle/ ...
分类:其他好文   时间:2018-04-05 13:25:51    阅读次数:162
swift语言点评十二-Subscripts
Classes, structures, and enumerations can define subscripts, which are shortcuts for accessing the member elements of a collection, list, or sequence. ...
分类:编程语言   时间:2018-04-04 15:16:35    阅读次数:146
Is it a Right Triangle?
Problem Write a program which judges wheather given length of three side form a right triangle. Print "YES" if the given sides (integers) form a right ...
分类:其他好文   时间:2018-03-26 22:33:36    阅读次数:193
Software Testing, Lab 1
Software Testing, Lab 1 一.实验要求: a) Description of triangle problem: Function triangle takes three integers a,b,c which are length of triangle sides; c ...
分类:其他好文   时间:2018-03-26 00:49:15    阅读次数:140
软件测试上机-lab1
Junit and Eclemma 课题作业: 1.在eclipse内安装Junit,hamcrest和Eclemma。 2.编写一个判断三角形的程序并使用jUnit编写其测试类: Description of triangle problem: Function triangle takes th ...
分类:其他好文   时间:2018-03-26 00:45:28    阅读次数:255
Lab1_report
Tasks: Description of triangle problem: Function triangle takes three integers a,b,c which are length of triangle sides; calculates whether the triang ...
分类:其他好文   时间:2018-03-26 00:41:32    阅读次数:173
软件测试作业——Junit使用
软件测试作业——Junit使用 [TOC] 题目要求 1. Install Junit(4.12),Hamcrest(1.3) with Eclipse 2. Install Eclemma with Eclipse 3. Write a javaprogram for the triangle p ...
分类:其他好文   时间:2018-03-25 21:46:43    阅读次数:255
st-lab1
Junit、Hamcrest、Eclemma的安装和使用 1.任务要求 Tasks: a) Description of triangle problem: Function triangle takes three integers a,b,c which are length of triang ...
分类:其他好文   时间:2018-03-25 18:07:29    阅读次数:205
1342条   上一页 1 ... 26 27 28 29 30 ... 135 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!