markdown基础使用技巧 通过``创建代码形式,不同形式可以叠加(比如:斜体+加粗) 块级元素 通过return/Enter实现切换段落/创建段落 通过shift+return/enter 实现换行或者通过 实现换行。 通过使用1-6个’#‘在行的开头并加上’ ‘创建相应的1-6个级别的标题。 ...
分类:
其他好文 时间:
2020-06-25 15:27:43
阅读次数:
52
Descpition There are n people and 40 types of hats labeled from 1 to 40. Given a list of list of integers hats, where hats[i] is a list of all hats pr ...
分类:
其他好文 时间:
2020-06-25 13:58:26
阅读次数:
56
题目链接 题目: 题解:很简单、经典的的一道快速幂的题 注意一下用LL型就ok。 代码: 1 #include <map> 2 #include <set> 3 #include <list> 4 #include <stack> 5 #include <queue> 6 #include <deq ...
分类:
其他好文 时间:
2020-06-25 11:32:48
阅读次数:
78
Hello all,i have some problem with NtFlushBuffersFile(). I should call it in virtual FS driver. Only one reference I have found - in ntdll.dll, but dr ...
分类:
其他好文 时间:
2020-06-25 10:16:30
阅读次数:
70
打开ueditor.all.js 注释掉以下三行 // var root = UE.htmlparser(html);// me.filterInputRule(root);// html = root.toHtml(); 将 html.push(creatInsertStr( vi.url, vi ...
分类:
其他好文 时间:
2020-06-25 10:09:08
阅读次数:
94
kubeadm config images list --kubernetes-version=v1.11.1 kubeadm reset kubectl get pods -n kube-system kubectl get pods --all-namespaces export KUBECON ...
分类:
其他好文 时间:
2020-06-25 09:35:40
阅读次数:
73
#include <bits/stdc++.h> #define ll long long #define fr first #define sc second #define pii pair<int, int> #define all(v) v.begin(), v.end() using na ...
分类:
其他好文 时间:
2020-06-25 09:24:44
阅读次数:
104
JDBC代表Java数据库连接,用于数据库连接和执行sql语句。 第一个jdbc实例: mysql驱动版本mysql-connector-java-8.0.16.jarpackage com.test; import java.sql.*; public class JDBC01 { public ...
分类:
数据库 时间:
2020-06-24 23:57:53
阅读次数:
109
Given a collection of distinct integers, return all possible permutations. Example: Input: [1,2,3] Output: [ [1,2,3], [1,3,2], [2,1,3], [2,3,1], [3,1, ...
分类:
其他好文 时间:
2020-06-24 23:53:58
阅读次数:
104
You are given two arrays (without duplicates) nums1 and nums2 where nums1’s elements are subset of nums2. Find all the next greater numbers for nums1' ...
分类:
其他好文 时间:
2020-06-24 23:43:31
阅读次数:
50