摘要: 错误信息:程序包无效。详细信息:“Cannot load extension with file or directory name . Filenames starting with "" are reserved for use by the system.”。 1、找到Chrome安装程序路径 阅读全文
posted @ 2020-03-24 18:22 北极飞企 阅读(866) 评论(0) 推荐(0) 编辑
摘要: 自己错误的那张图没截到,和这个差不多,就是appium-chromedriver@3.0.1的位置上换成了windows-build-tools@5.2.2 解决方法: npm install windows-build-tools@5.2.2 --ignore-scripts 阅读全文
posted @ 2020-03-23 20:04 北极飞企 阅读(5617) 评论(1) 推荐(0) 编辑
摘要: gulp报错The following tasks did not complete 代码如下: //引用gulp模块 const gulp = require('gulp'); //使用gulp.task()建立任务 gulp.task('first', () => { console.log(' 阅读全文
posted @ 2020-03-18 15:47 北极飞企 阅读(441) 评论(0) 推荐(0) 编辑
摘要: SyntaxError: Invalid or unexpected token at wrapSafe (internal/modules/cjs/loader.js:1072:16) at Module._compile (internal/modules/cjs/ 阅读全文
posted @ 2020-03-18 11:05 北极飞企 阅读(2211) 评论(0) 推荐(0) 编辑
摘要: 安装nodejs,网址:http://nodejs.cn/download/ 检查是否安装成功,使用cmd命令 输入 "node-v" 查看版本 基于nodejs 在线安装less,使用cmd命令“npm install -g less” 查看是否安装成功,使用cmd命令“lessc -v” 查看版 阅读全文
posted @ 2020-03-05 11:35 北极飞企 阅读(142) 评论(0) 推荐(0) 编辑
摘要: 下载超时解决方法: pip --default-timeout=100 install -U tensorflow 数字是可以修改的 下载速度慢 使用镜像安装 pip install -i https://pypi.tuna.tsinghua.edu.cn/simple tensorflow==版本 阅读全文
posted @ 2020-02-26 10:18 北极飞企 阅读(311) 评论(0) 推荐(0) 编辑
摘要: ST表 ST表的功能很简单 它是解决RMQ问题(区间最值问题)的一种强有力的工具 它可以做到O(nlogn) 预处理O(1) 查询最值 算法 ST表是利用的是倍增的思想 拿最大值来说 我们用 Max[i][j]表示,从 i位置开始的 2^j 个数中的最大值,例如 Max[i][1]表示的是 i位置和 阅读全文
posted @ 2018-07-31 20:06 北极飞企 阅读(234) 评论(0) 推荐(0) 编辑
摘要: Network Saboteur Time Limit: 2000MS Memory Limit: 65536K Total Submissions: 14087 Accepted: 6893 Description A university network is composed of N com 阅读全文
posted @ 2018-05-22 20:21 北极飞企 阅读(167) 评论(0) 推荐(0) 编辑
摘要: Pearls Time Limit: 1000MS Memory Limit: 10000K Total Submissions: 9932 Accepted: 5105 Description In Pearlania everybody is fond of pearls. One compan 阅读全文
posted @ 2018-05-22 13:33 北极飞企 阅读(107) 评论(0) 推荐(0) 编辑
摘要: 最长公共子序列长度递归式 dp[i][j]代表区间i到j之间的最长公共子序列长度 i=0或j=0时,dp[i][j]=0; i、j>0且xi=yj dp[i][j]=dp[i-1][j+1]; i、j>0且xi!=yj dp[i][j]=max(dp[i][j-1],dp[i-1][j]) 在输出的 阅读全文
posted @ 2018-05-08 20:52 北极飞企 阅读(193) 评论(0) 推荐(0) 编辑