码迷,mamicode.com
首页 >  
搜索关键字:check mk    ( 9979个结果
yaml演示
yaml演示 unit Tests.Neslib.Yaml.Sample; interface uses DUnitX.TestFramework, Neslib.Yaml; type TestYamlSample = class private procedure CheckStream(cons ...
分类:其他好文   时间:2021-01-06 11:41:39    阅读次数:0
Leetcode101.对称二叉树
题目 1 class Solution { 2 public: 3 4 bool isSymmetric(TreeNode* root) { 5 return check(root,root); 6 } 7 bool check(TreeNode* p,TreeNode* q) { 8 if(!p ...
分类:其他好文   时间:2021-01-05 11:37:37    阅读次数:0
Git error:'fatal: Couldn't find remote ref master'
本文选取并翻译自:https://saywebsolutions.com/blog/git-github-error-fatal-couldnt-find-remote-ref-master 如果出现该错误提示,可能是因为使用了旧命令: git pull origin master master现在 ...
分类:其他好文   时间:2021-01-04 11:08:12    阅读次数:0
redis 安装 配置 操作
Redis 安装 当前ubuntu虚拟机中已经安装好了redis,以下步骤可以跳过 以后自己安装过程如下:redis下载链接:x 指的是版本号 http://download.redis.io/releases/redis-x.x.x.tar.gz step1:下载 wget http://down ...
分类:其他好文   时间:2021-01-04 11:04:03    阅读次数:0
二分模板(整数+浮点数)
整数域上的二分 模板样式 bool check(int x) {/* ... */} // 检查x是否满足某种性质 // 区间[l, r]被划分成[l, mid]和[mid + 1, r]时使用: int bsearch_1(int l, int r) { while (l < r) { int m ...
分类:其他好文   时间:2021-01-01 12:14:33    阅读次数:0
1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '-1' at line 1
SELECT * FROM `user` LIMIT 4,-1; 使用limit分页的时候,出现一个错误,官方说的是将这个bug修复了,这个以前是可以使用的 ...
分类:数据库   时间:2021-01-01 12:00:42    阅读次数:0
西湖丢脸大赛
西湖挑战杯WEB赛后总结 一、easyjson 这是题目一打开的模样,像极了爱情,我感觉我好像又可以了。 wp1: xff设置ip 获取目录 filename=index.php可过check 关键代码转unicode,然后进行getshell(具体见博客GETshell大法) {"\u0063\u ...
分类:其他好文   时间:2021-01-01 11:58:51    阅读次数:0
【YBTOJ】【USACO03MAR】最大均值
题目大意: 给定正整数序列 \(A\),求一个平均数最大的,长度不小于 \(L\) 的(连续的)子段。 正文: 二分平均值,如果原序列减去所二分的值,那么就能找到其中的单调性:若平均值过大,最大的长度不小于 \(L\) 的子段和是负数;过小则会很大。 那么根据这个为 key 二分,就能得到答案。但注 ...
分类:其他好文   时间:2020-12-31 11:46:49    阅读次数:0
asp.net core 5,0 项目中Add-Migration 执行报错 (可能不小心删掉了,安装后真的可以用了!!!)
错误提示: Add-Migration : The term 'Add-Migration' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelli ...
分类:Web程序   时间:2020-12-30 11:32:15    阅读次数:0
表字段与mysql关键字冲突
项目启动提示语法错误[42000][1064] You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to u ...
分类:数据库   时间:2020-12-29 12:06:59    阅读次数:0
9979条   上一页 1 ... 13 14 15 16 17 ... 998 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!