一、题目 1、审题 2、分析 判断数组中是否存在两个值相同的元素,下标之差 <= k 二、解答 1、思路: 使用 Set 将数组的前 k 个元素添加入 Set,若有添加失败情况,则返回 true; 之后每次将 set 中的前面第 i - k - 1 个元素从 Set 中去除,并添加入新的元素,若添加 ...
分类:
其他好文 时间:
2018-11-03 21:53:56
阅读次数:
198
先看一个sql语句: select * from admin where username='(此处为用户输入的数据)'; 在没有任何过滤的情况下,如果用户输入:' or 1=1 -- 这条语句就为:select * from admin where username='' or 1=1 --'; ...
分类:
数据库 时间:
2018-10-31 00:02:42
阅读次数:
179
1 #include 2 3 bool duplicate(int numbers[], int length, int* duplication) 4 { 5 if (numbers == nullptr || length length - 1) 10 return false; 11 12 }... ...
分类:
其他好文 时间:
2018-10-27 23:36:04
阅读次数:
297
InfluxDB是一个开源的时序数据库,使用GO语言开发,特别适合用于处理和分析资源监控数据这种时序相关数据。而InfluxDB自带的各种特殊函数如求标准差,随机取样数据,统计数据变化比等,使数据统计和实时分析变得十分方便。在我们的容器资源监控系统中,就采用了InfluxDB存储cadvisor的监 ...
分类:
数据库 时间:
2018-10-27 17:11:10
阅读次数:
446
Given a sorted linked list, delete all nodes that have duplicate numbers, leaving only distinct numbers from the original list. Example 1: Example 2: ...
分类:
其他好文 时间:
2018-10-24 20:00:48
阅读次数:
157
Given a set of distinct integers, nums, return all possible subsets (the power set). Note: The solution set must not contain duplicate subsets. Exampl ...
分类:
其他好文 时间:
2018-10-24 16:06:20
阅读次数:
175
一、模板使用 scrapy 在建立爬虫的时候,还可以指定使用的模板进行建立 默认建立爬虫文件的命令: 可以用 scrapy genspider --list 命令 查看scrapy的模板 通过crawl模板生成拉钩网爬虫文件 二、编写lagou.py import scrapy from scrap ...
分类:
其他好文 时间:
2018-10-24 15:38:22
阅读次数:
292
Write a SQL query to find all duplicate emails in a table named Person. + + + | Id | Email | + + + | 1 | a@b.com | | 2 | c@d.com | | 3 | a@b.com | + + ...
分类:
其他好文 时间:
2018-10-23 12:09:34
阅读次数:
168
Given a sorted array consisting of only integers where every element appears twice except for one element which appears once. Find this single element ...
分类:
其他好文 时间:
2018-10-20 23:47:30
阅读次数:
147
MySQL 事务 MySQL 事务主要用于处理操作量大,复杂度高的数据。比如说,在人员管理系统中,你删除一个人员,你即需要删除人员的基本资料,也要删除和该人员相关的信息,如信箱,文章等等,这样,这些数据库操作语句就构成一个事务! 在 MySQL 中只有使用了 Innodb 数据库引擎的数据库或表才支 ...
分类:
数据库 时间:
2018-10-20 11:48:17
阅读次数:
174