最新 最热

leetcode 生成杨辉三角形, 118 119 Pascal's Triangle 1,2

Given numRows, generate the first numRows of Pascal's triangle.

2019-01-18
1

162. 矩阵归零先找为零的位置,再分别置零

给定一个m×n矩阵,如果一个元素是0,则将其所在行和列全部元素变成0。 需要在原矩阵上完成操作。

2018-09-04
0

输出图案类问题的思路

一、问题导入编写一个程序,只用两条输出语句,生成一个像半个5*5正方形形状(直角三角形)的#符号图案:###############二、问题分析我们可以采用消减法,先把它想象成一个5*5的矩形。第一行:##### 的实现代码(一个for循环即可)1 ...

2018-06-04
0

leetcode-566-Reshape the Matrix

题目描述:In MATLAB, there is a very useful function called 'reshape', which can reshape a matrix into a new one with different size but keep its original data.You...

2018-05-22
0

PowerDesigner设置表字段唯一约束

现有一个表student,id为主键。现打算给name添加一个唯一约束。双击打开这个表,点击“keys"选项卡,显示有一个key_1,这是id主键。点击”insert a row'插入按钮,输入...

2018-04-23
1

POI 操作Excel疑难点笔记

在POI中,我们可以通过Workbook, Sheet, Row, Cell 对象分别对应Excel文件、工作表、行、单元格。在POI的使用中,我遇到了几个非常诡异、捉摸不透的问题,现在记录下来。1、关于Sheet、Row、Cell的下标一般情况下,我们读取...

2018-04-13
1

【专知-关关的刷题日记20】Leetcode 119. Pascal's Triangle II

题目Given an index k, return the kth row of the Pascal's triangle.For example, given k = 3,Return [1,3,3,1].这道题是118题的延续,要求给定数字k,返回杨辉三角的第k行,这里把最开始的[1]这一行看作了第0行。...

2018-04-09
1

Codeforces 725B Food on the Plane

B. Food on the Planetime limit per test:2 secondsmemory limit per test:256 megabytesinput:standard inputoutput:standard outputA new airplane SuperPuperJet ...

2018-04-08
1

dedecms提取某栏目及子栏目名称到首页怎么弄

我们建网站时有不同的需求,例如为页面创建一个栏目导航,用dedecms如何提取某栏目及子栏目名称和链接呢?如下图所示,先列出指定的顶级栏目,在下方再列出此栏目的所有子栏目。  之前ytkah说过...

2018-03-06
1

Leetcode 74 Search a 2D Matrix

Write an efficient algorithm that searches for a value in an m x n matrix. This matrix has the following properties:Integers in each row are sorted from left ...

2018-01-12
1