Problem DescriptionOO has got a array A of size n ,defined a function f(l,r) represent the number of i (li) satisfy aimod aj=0,now OO want to know∑i=1...
分类:
其他好文 时间:
2015-07-21 20:30:27
阅读次数:
142
DescriptionOO has got a array A of size n ,defined a function f(l,r) represent the number of i (li) satisfy aimod aj=0,now OO want to know [∑i=1n ∑j=i...
分类:
其他好文 时间:
2015-07-21 20:28:35
阅读次数:
102
一句话: filter是万能的数据处理器,可以过滤数据,排序数据,删除数据,扩展数据1. 内置filter大全url:https://docs.angularjs.org/api/ng/filteruppercase lowercase转换为大小写date转换为各种日期格式number将数字格式化成...
分类:
其他好文 时间:
2015-07-21 20:24:19
阅读次数:
93
Find the contiguous subarray within an array (containing at least one number) which has the largest product.For example, given the array[2,3,-2,4],the...
分类:
其他好文 时间:
2015-07-21 20:12:55
阅读次数:
97
一只青蛙一次可以跳上1级台阶,也可以跳上2级。求该青蛙跳上一个n级的台阶总共有多少种跳法。 1 class Solution { 2 public: 3 int jumpFloor(int number) { 4 int a=1, b=1; 5 for(int...
分类:
其他好文 时间:
2015-07-21 20:11:35
阅读次数:
184
generate alphanumeric serial number with the following BADI / Customer Exit:
Name of Enhancement : IQSM0001
Name of Function Module Exit: EXIT_SAPLIPW1_001
Name of Include : ZXQSMU01
ZXQSMU01:
This user exit can be used to create the serial numbers a...
分类:
其他好文 时间:
2015-07-21 17:21:00
阅读次数:
213
字符串类型
固定长度:char nchar n 表示Unicode编码
可变长度: varchar2 nvarchar2
数字类型:number(P,S)P:整数位数,S小数位数
integer 整数
BINARY_FLOAT 单浮点
BINARY_DOUBLE 双浮点
FLOAT...
分类:
数据库 时间:
2015-07-21 17:17:46
阅读次数:
135
显示行号:在vim命令行模式下输入 :set nu或:set number取消显示行号:在vim命令行模式下输入:set nonu或:set nonumber查看文件编码格式::set fileencoding修改文件编码格式::set fileencoding=gbk
分类:
系统相关 时间:
2015-07-21 16:54:06
阅读次数:
143
select *from ( select *, row_number() over (partition by Code order by code desc ) as seq from GNS_Goods ) as t where seq=1
分类:
数据库 时间:
2015-07-21 14:39:35
阅读次数:
200
Intuition: 2D DP. Basic idea: compose square at dp[i][j] from dp[i-1][j-1]. You need 2 facility 2D matrix: accumulated horizontal\vertical number of 1...
分类:
其他好文 时间:
2015-07-21 14:37:44
阅读次数:
79