Given a matrix A, return the transpose of A. The transpose of a matrix is the matrix flipped over it's main diagonal, switching the row and column ind ...
分类:
其他好文 时间:
2020-07-01 12:25:01
阅读次数:
47
gate 一年前做的. 求一个字符串由多少个循环节构成. KMP. 结论:若$n % (n-next[n]) \not= 0$则不是由循环节构成的. 否则,答案为$n/(n-next[n])$. code #include<cstdio> #include<iostream> #include<cm ...
分类:
其他好文 时间:
2020-07-01 09:51:14
阅读次数:
65
给定一个 m x n 的矩阵,如果一个元素为 0,则将其所在行和列的所有元素都设为 0。请使用原地算法。 function setZeroes(matrix) { let x = [],y = [] for(let i = 0;i < matrix.length;i++){ let item = m ...
分类:
其他好文 时间:
2020-06-30 22:41:28
阅读次数:
46
option = { xAxis: { type: 'category', data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'] }, yAxis: { type: 'value' }, series: [{ data: [120, 200, ...
分类:
其他好文 时间:
2020-06-30 16:02:33
阅读次数:
165
pandas绘图 pandas绘图是基于matplotlib的上层封装 正常工作一般先用pandas绘图,再辅以matplotlib修改组件 Pandas绘图的优势: 代码简洁 针对pandas数据结构专门优化过(series/DataFrame) 劣势: pandas绘图自定义程度较差 matpl ...
分类:
其他好文 时间:
2020-06-30 16:01:20
阅读次数:
96
前言 昨天迁移网站,今天突然出了Ueditor请求后台配置项http错误,上传功能将不能正常使用 步骤 看了下网络请求发现是config.json文件没有读取到,重新覆盖了该文件后恢复,不过不排除网络问题造成的 cp -rvf public/static/js/ue/config.json /dat ...
分类:
Web程序 时间:
2020-06-30 14:49:35
阅读次数:
310
稀疏 sparsearray 数组 简介 矩阵中非零元素的个数远远小于矩阵元素的总数,并且非零元素的分布没有规律,通常认为矩阵中非零元素的总数比上矩阵所有元素总数的值小于等于0.05时,则称该矩阵为稀疏矩阵(sparse matrix),该比值称为这个矩阵的稠密度; 当一个数组中大部分元素为0,或者 ...
分类:
编程语言 时间:
2020-06-29 22:43:01
阅读次数:
61
问题: 给定由0,1构成的数组,求由1构成的(各种长度边长的)正方形的总个数有多少。 Example 1: Input: matrix = [ [0,1,1,1], [1,1,1,1], [0,1,1,1] ] Output: 15 Explanation: There are 10 squares ...
分类:
其他好文 时间:
2020-06-29 20:05:12
阅读次数:
61
Using the Power Apps visual Let's look at the steps required to use the Power Apps visual in your Power BI report. Power Apps visual is available by d ...
分类:
移动开发 时间:
2020-06-29 11:30:50
阅读次数:
107
简介 在pandas中有两类非常重要的数据结构,即序列Series和数据框DataFrame。Series类似于numpy中的一维数组,除了通吃一维数组可用的函数或方法,而且其可通过索引标签的方式获取数据,还具有索引的自动对齐功能;DataFrame类似于numpy中的二维数组,同样可以通用nump ...
分类:
其他好文 时间:
2020-06-29 09:54:34
阅读次数:
35