Windows ——> Perference——> General ——> Appearence ——> Colors and Fonts ——> Basic ——> Text font 在Text font选项中,双击eidter,将字体设置为不带@符号的即可,一般使用Consolas,字体大小一 ...
分类:
系统相关 时间:
2019-10-21 21:01:26
阅读次数:
141
颜色排序,中文又叫做荷兰国旗。好吧,题意是给一个数组,里面只有0,1,2三个数字,把数组排序成[0, 0, 0, 1, 1, 1, ....1, 2, 2, 2, 2, 2]的样子。 思路是two pointer夹逼扫描,遇到0就放在左起当前的位置,遇到1就不处理,遇到2就放在右起当前位置。代码如下 ...
分类:
其他好文 时间:
2019-10-17 01:23:08
阅读次数:
85
原题链接在这里:https://leetcode.com/problems/remove-boxes/ 题目: Given several boxes with different colors represented by different positive numbers.You may ex ...
分类:
其他好文 时间:
2019-10-12 12:53:38
阅读次数:
100
2012 USAMO Problems/Problem 2 ProblemA circle is divided into 432 congruent arcs by 432 points. The points are colored in four colors such that some 1 ...
分类:
其他好文 时间:
2019-10-08 18:45:35
阅读次数:
107
A proper vertex coloring is a labeling of the graph's vertices with colors such that no two vertices sharing the same edge have the same color. A colo ...
分类:
其他好文 时间:
2019-10-02 10:33:30
阅读次数:
98
转发链接:https://www.cnblogs.com/wiming/p/3702860.html 想更换vim配色方案,需要修改两个文件: 第一个修改是在 /user/share/vim/vim73/colors 添加xxx.vim文件;//路径里面有些不是vim73,是vim70或其他 第二个 ...
分类:
系统相关 时间:
2019-09-30 16:21:01
阅读次数:
114
flutter button button类型: shape:属性 eg: 去除水波纹效果 splashColor: Colors.transparent, 自定义带渐变色button ...
分类:
其他好文 时间:
2019-09-23 18:35:07
阅读次数:
122
matlab colormaps 默认颜色图是 parula ,颜色图从左往右数值不断增大。 matplotlib colormap 颜色图在这个位置https://matplotlib.org/3.1.0/tutorials/colors/colormaps.html,由于太杂了,就没有列出来了 ...
分类:
其他好文 时间:
2019-09-21 20:56:14
阅读次数:
144
vim ~/.vimrc 然后输入常用的需要用的命令,然后保存,这个每次启动VIM都会自动配置。当然你也可以在VIM里面按“:”之后输入如下命令,但是下次启动之后设置就会丢失了。 syntax enable "自动检测语法syntax on "自动语法高亮set number "显示行号colors ...
分类:
系统相关 时间:
2019-09-21 10:50:54
阅读次数:
84
Given an array with n objects colored red, white or blue, sort them in-place so that objects of the same color are adjacent, with the colors in the or ...
分类:
其他好文 时间:
2019-09-16 00:22:37
阅读次数:
110