在chrome下: input::-webkit-outer-spin-button,input::-webkit-inner-spin-button{ -webkit-appearance: none !important; margin: 0; } Firefox下: input[type="n ...
分类:
Web程序 时间:
2018-01-02 19:55:51
阅读次数:
190
Given a sorted linked list, delete all duplicates such that each element appear only once. For example,Given 1->1->2, return 1->2.Given 1->1->2->3->3, ...
分类:
其他好文 时间:
2017-12-31 14:12:12
阅读次数:
96
Related to question Excel Sheet Column Title Given a column title as appear in an Excel sheet, return its corresponding column number. For example: ...
分类:
其他好文 时间:
2017-12-27 22:40:16
阅读次数:
200
https://loj.ac/problem/2289 LCT+泰勒展开 首先e^x求导完是ln e * e^x还是e^x sin x求导完变成cos x,cos x求导完变成sin x 由于复合函数f(g(x))求导完是f'(g(x))*g'(x) 所以就可以轻松的推出sin x和e^x的n阶导数 ...
分类:
其他好文 时间:
2017-12-27 20:26:57
阅读次数:
241
Given a sorted linked list, delete all duplicates such that each element appear only once. For example,Given 1->1->2, return 1->2.Given 1->1->2->3->3, ...
分类:
其他好文 时间:
2017-12-17 23:53:33
阅读次数:
188
What is Maven? At first glance Maven can appear to be many things, but in a nutshell Maven is an attempt to apply patterns to a project's build infras ...
分类:
其他好文 时间:
2017-12-14 04:09:34
阅读次数:
186
一、instr()函数 1、语法:instr(sourceString,destString,start,appearPosition) sourceString代表源字符串; destString代表要从源字符串中查找的子串; start代表查找的开始位置,这个参数可选的,默认为1; appear ...
分类:
数据库 时间:
2017-12-12 00:17:16
阅读次数:
323
Given a sorted array, remove the duplicates in place such that each element appear only once and return the new length.Do not allocate extra space for ...
分类:
其他好文 时间:
2017-12-11 18:39:05
阅读次数:
152
1.网络连接问题,我点的是preference的【Appearance&Behavior】–>【System Settings】–>【HTTP Proxy】 改成auto自己查找就可以更新了 2.更新 android studio --check for update sdk可以直接更新,而andr ...
分类:
移动开发 时间:
2017-12-08 01:23:12
阅读次数:
220
createwindow 定义 修改样式设置style 将窗体设置为 无边框(|WS_POPUP),方便嵌到其他程序里面,一般设置为最大化(WS_MAXIMIZE),如需设置可拖拽(WS_SIZEBOX)。如果需要设置成固定大小及位置 调整xy坐标及width、height 宽高。 下面为一些参考链 ...