简介 最近不管是在QQ群还是在微信 群里总是能够看到IDE的激活码失效的字眼,宏哥也一直在说“关注公众号发送《激活码》三个字就可以获取到有效的激活码”。可是还是有些童鞋们和小伙伴在一直不停的问问问。究其根本原因还是大多数还是穷人或者是永久激活失败了 ,如果有钱直接就购买整版了,如果永久激活就不会到期 ...
分类:
其他好文 时间:
2020-03-18 11:51:32
阅读次数:
91
Git原理 git fetch是将远程主机的最新内容拉到本地,用户在检查了以后决定是否合并到工作本机分支中。 而git pull 则是将远程主机的最新内容拉下来后直接合并,即:git pull = git fetch + git merge,这样可能会产生冲突,需要手动解决。 解决方案 ① 保存本地 ...
分类:
其他好文 时间:
2020-03-18 11:37:36
阅读次数:
56
Given a string s and a string t, check if s is subsequence of t. You may assume that there is only lower case English letters in both s and t. t is po ...
分类:
其他好文 时间:
2020-03-18 11:13:53
阅读次数:
47
Given a string str and a dictionary dict, you need to find out which words in the dictionary are subsequences of the string and return those words.The ...
分类:
其他好文 时间:
2020-03-18 10:05:00
阅读次数:
74
Given an array of integers and an integer k, you need to find the minimum size of continuous subarrays whose sum equals to k, and return its length. i ...
分类:
其他好文 时间:
2020-03-18 09:33:00
阅读次数:
42
基于vue.js的图片预览组件 Github github 安装 npm install enlargeimg --save-dev import enlargeimg from 'enlargeimg'; 基础用法 <enlargeImg :data="files"></enlargeImg> e ...
分类:
Web程序 时间:
2020-03-18 09:30:00
阅读次数:
76
"https://codeforces.com/contest/1324/problem/F" description you are given a tree, in which the vertices are all printed either black or white. , find ...
分类:
其他好文 时间:
2020-03-18 00:04:49
阅读次数:
76
论算法优化的重要性 要有分析算法时间复杂度的潜意识,慢慢培养。 别总是上来暴力,还有可怕的两层循环2333qwq The Bureau for Artificial Problems in Competitions wants you to solve the following problem: ...
分类:
其他好文 时间:
2020-03-17 21:02:11
阅读次数:
70
1.django.core.exceptions.ImproperlyConfigured: mysqlclient 1.3.13 or newer is required; you have 0.9.3. 修改/usr/local/lib/python3.5/dist-packages/djang ...
分类:
数据库 时间:
2020-03-17 19:22:59
阅读次数:
77
错误原因 在pom中引入了mybatis-spring-boot-starter ,Spring boot默认会加载org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration类,DataSourceAutoConfi ...
分类:
数据库 时间:
2020-03-17 16:45:57
阅读次数:
384