You are given a list of non-negative integers, a1, a2, ..., an, and a target, S. Now you have 2 symbols + and -. For each integer, you should choose o ...
分类:
其他好文 时间:
2020-01-20 09:38:14
阅读次数:
92
HTMLLiving Standard — Last Updated 20 August 201712.2.4 Parse stateParts of this specification are © Copyright 2004-2014 Apple Inc., Mozilla Foundatio ...
分类:
Web程序 时间:
2020-01-19 16:31:21
阅读次数:
103
关于 1. "下载地址" 2. 目标:找到3个Key 3. "哔哩哔哩视频" 。 信息收集 1. 用的是Host only,所以网卡是vmnet1,IP一直是192.168.7.1/24 2. 3. 发现第一个Key【073403c8a58a1f80d943455fb30724b9】,外加一个字典, ...
分类:
其他好文 时间:
2020-01-19 09:27:30
阅读次数:
159
public int[] replaceElements(int[] arr) { for(int i=0;i<arr.length-1;i++) arr[i]=findRightmax(i,arr); arr[arr.length-1]=-1; return arr; } public int f ...
分类:
其他好文 时间:
2020-01-17 23:29:36
阅读次数:
138
系列介绍 简介 【五分钟的DotNet】是一个利用您的碎片化时间来学习和丰富.net知识的博文系列。它所包含了.net体系中可能会涉及到的方方面面,比如C 的小细节,AspnetCore,微服务中的.net知识等等。 5min+不是超过5分钟的意思,"+"是知识的增加。so,它是让您花费5分钟以下的 ...
分类:
Web程序 时间:
2020-01-17 21:33:01
阅读次数:
125
原题链接在这里:https://leetcode.com/problems/shortest-way-to-form-string/ 题目: From any string, we can form a subsequence of that string by deleting some numb ...
分类:
其他好文 时间:
2020-01-17 10:01:32
阅读次数:
91
1.explain(执行计划)中涉及的各字段理解1.1) select_type列的取值及含义: SIMPLE :简单的SELECT语句(不包括UNION操作或子查询操作) PRIMARY :查询中最外层的SELECT(如两表做UNION或者存在子查询的外层的表操作为PRIMARY,内层的操作为UN ...
分类:
数据库 时间:
2020-01-16 21:44:42
阅读次数:
87
Given an integer n, return any array containing n unique integers such that they add up to 0. Example 1: Input: n = 5 Output: [-7,-1,1,3,4] Explanatio ...
分类:
其他好文 时间:
2020-01-16 14:19:16
阅读次数:
90
最近困扰自己很久的膝盖积液手术终于做完,在家养伤,逛技术博客看到easyswoole开发组成员仙士可博客有关mysql索引方面的知识,自己打算重温下。 正常业务起步数据表数据量较少,不用考虑使用索引,当后期累积的数据数量非常可观时,使用索引是提升查询的一条途径,其他的像表分区,分库分表等等。 【索引 ...
分类:
数据库 时间:
2020-01-14 20:55:29
阅读次数:
96
本节文章研究的代码位于 tsc/src/compiler/scanner.ts 字符 任何源码都是由很多字符组成的,这些字符可以是字母、数字、空格、符号、汉字等…… 每一个字符都有一个编码值,比如字符“a”的编码值是97,字符“林”的编码值是26519。 每个字符对应的编码值是多少是由编码表决定的, ...
分类:
其他好文 时间:
2020-01-13 16:35:38
阅读次数:
111