码迷,mamicode.com
首页 >  
搜索关键字:number    ( 26994个结果
多校7.21A——OO’s Sequence
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
2015 多校赛 1001 (hdu 5288)
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
简话Angular 04 Angular过滤器详解
一句话: filter是万能的数据处理器,可以过滤数据,排序数据,删除数据,扩展数据1. 内置filter大全url:https://docs.angularjs.org/api/ng/filteruppercase lowercase转换为大小写date转换为各种日期格式number将数字格式化成...
分类:其他好文   时间:2015-07-21 20:24:19    阅读次数:93
[leedcode 152] Maximum Product Subarray
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
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
Oracle数据类型,函数与存储过程
字符串类型    固定长度: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操作命令-笔记
显示行号:在vim命令行模式下输入 :set nu或:set number取消显示行号:在vim命令行模式下输入:set nonu或:set nonumber查看文件编码格式::set fileencoding修改文件编码格式::set fileencoding=gbk
分类:系统相关   时间:2015-07-21 16:54:06    阅读次数:143
Sql去重复查询
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
LeetCode "Maximal Square"
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
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!