阅读目录 第一步 第二步 第三步 第四步 第五步 下载官网 http://www.sublimetext.com/ 中文模式(教程) 回到顶部 第一步 打开Sublime Text ,按shift+ctrl+p 弹出查找。 回到顶部 第二步 在输入框中输入install,回车键 回到顶部 第三步 在 ...
分类:
其他好文 时间:
2020-07-03 14:01:56
阅读次数:
191
<script> // 要整理的数据 var array = [ {1: 'name', 2: 'age', 3:'sex', 4:'address'}, {1: 'tom', 2: '12', 3:'sex', 4:'englich'}, {1: 'mark', 2: '13', 3:'sex', ...
分类:
Web程序 时间:
2020-07-02 20:08:02
阅读次数:
260
Alice and Bob have candy bars of different sizes: A[i] is the size of the i-th bar of candy that Alice has, and B[j] is the size of the j-th bar of ca ...
分类:
其他好文 时间:
2020-07-02 10:42:14
阅读次数:
53
You have a total of n coins that you want to form in a staircase shape, where every k-th row must have exactly k coins. Given n, find the total number ...
分类:
其他好文 时间:
2020-07-01 23:59:14
阅读次数:
86
body .el-table th.gutter { display: table-cell !important } ...
分类:
其他好文 时间:
2020-07-01 17:27:20
阅读次数:
168
const Compare = { LESS_THAN:-1, BIGGER_THAN:1 }; function defaultCompare(a,b){ if(a b){ return 0; } return a < b?Compare.LESS_THAN : Compare.BIGGER_TH ...
分类:
编程语言 时间:
2020-07-01 09:55:40
阅读次数:
104
效果图: 重要代码: 1.包裹Json元素块添加属性 overflow: auto;word-break: break-all; 2.固定宽度 <th style="width:800px;"> <p style="overflow: auto;word-break: break-all;"> Js ...
分类:
Web程序 时间:
2020-06-30 16:04:20
阅读次数:
144
题意:求 \(\sum_{i=1}^n i^k\) Part 1 通过伯努利数可以证明答案是一个 \(k+1\) 项的多项式。 然后就可以用拉格朗日插值来做,具体套模板,不多谈 Part 2 发现这个东西好像可以斯特林数搞一搞的样子。先推一波式子 $$\sum_nik\ \sum_^n\sum_^k ...
分类:
其他好文 时间:
2020-06-29 20:05:43
阅读次数:
42
这篇我们将搭建 Qt 开发环境(联网状态下)。 1、准备工作 1.1 检查网络,确保能联网,我用的yum源用的是阿里的。这一点请随意用哪个yum源。 1.2 下载 Qt 4.8.7,下载地址 图 1.1 1.3 下载 QtCreate 图 1.2 1.4 从你自己的 windows7 系统里找到中文 ...
分类:
其他好文 时间:
2020-06-29 18:39:48
阅读次数:
60
A.Required Remainder 传送门 #include<bits/stdc++.h> using namespace std; #pragma GCC optimize(2) typedef long long ll; typedef unsigned long long ull; ty ...
分类:
其他好文 时间:
2020-06-29 17:00:21
阅读次数:
91