class Solution(object): def maxIncreaseKeepingSkyline(self, grid): """ :type grid: List[List[int]] :rtype: int """ import numpy as np grid=np.array... ...
分类:
其他好文 时间:
2019-04-04 09:56:12
阅读次数:
128
页面代码 <Grid DockPanel.Dock="Left" Width="400"> <DataGrid Name="dgSource" VerticalScrollBarVisibility="Visible" EnableRowVirtualization="False" ScrollVi ...
就是一个组合数水题 偷个图 去掉阴影部分 把整个图看成上下两个矩形 对于上面的矩形求出起点到每个绿点的方案 对于下面的矩形 求出每个绿点到终点的方案 上下两个绿点的方案相乘后相加 就是了 想想为什么 ...
分类:
其他好文 时间:
2019-04-02 22:44:18
阅读次数:
313
Given a 2D board and a word, find if the word exists in the grid. The word can be constructed from letters of sequentially adjacent cell,where "adjace ...
分类:
其他好文 时间:
2019-04-02 21:23:43
阅读次数:
205
Linux下安装OracleRAC --图片版。(在安装完操作系统及配置完属性后的安装GRID软件及数据操作,配置可参考另外一篇)
分类:
数据库 时间:
2019-04-01 10:26:36
阅读次数:
132
numpy.meshgrid 和 numpy.mgrid 用于返回包含坐标向量的坐标矩阵. 当坐标矩阵为二维时, 可用于在图像变形时构建网格. 实例一 注意, 对于 np.meshgrid(range(5), range(3)), * 返回两个数组 grid_y1和grid_x1,形状均为 3 x ...
分类:
其他好文 时间:
2019-04-01 00:53:23
阅读次数:
232
{ iconCls: 'zyl_icons_showdetail', tooltip: '查看', handler: function(gridView, rowIndex, colIndex) { var rowInfo = gridView.up('grid... ...
分类:
Web程序 时间:
2019-03-29 14:45:23
阅读次数:
173
self.ADOQuery2.Edit;self.ADOQuery2.First;while not self.ADOQuery2.Eof dobeginself.ADOQuery2.FieldByName('单价').Value:=roundto(self.ADOQuery2.FieldByNam ...
这个是客户端表格导出伪Excel文档. 不知道为啥,超过200条,不能导出,显示网络错误 ...
分类:
其他好文 时间:
2019-03-26 15:11:15
阅读次数:
157
实验数据:http://pan.baidu.com/s/1i3xIsXf(spot data) 两幅图像包围整个地震事件,在相关之前,必须清除图像中的几何伪影(如地形),并精确地配准。 1. 定义两幅图像的Ancillary data (satellite) 此功能(“Satellite Image ...
分类:
其他好文 时间:
2019-03-26 13:28:04
阅读次数:
1803